I\'m trying to match any requests for a url that do not have a folder character (/) or end with an extension (.aspx). I can ignore querystring values and fragments in the regular expression for now. S
Here is my rule: RewriteCond %{HTTP_HOST} ^www.siteone.com$ [NC] RewriteRule ^/checkout/(.*)$ https://www.sitetwo.com/checkout/$1 [NC,P]
I have multiple sites on a single IIS 6 server running ISAPI Rewrite 3 (free additi开发者_如何学Pythonon).
How can I write the following rule in older version of ISAPI_rewrite ? RewriteCond %{HTTP_HOST} ^fit-reisen.de$ [NC]
A really easy one, but I need to get this right, and cannot afford mistakes as I need to deploy on a live server as soon as I can.