5
votes
8answers
830 views
Redirecting non-www URL to www
I'm using Helicon's ISAPI Rewrite 3, which basically enables .htaccess in IIS. I need to redirect a non-www URL to the www version, i.e. example.com should redirect to www.example.com. I used the …
2
votes
4answers
326 views
Can I do an if/then/else in htaccess?
I have a site that serves up certain content based on the subdomain. So it is the same set of files, and maybe the header and some info in the site pages changes based on the subdomain.
I need to …
2
votes
2answers
481 views
Isapi Rewrite 301 redirect resolves as 404 - circular reference?
Hi,
I'm trying to use IIS Isapi Rewrite to do the following...
I need seo-friendly URLs to be (silently) converted back to application friendly URLs like so:
RewriteRule ^/seo-friendly-url/ …
1
vote
4answers
53 views
Regular Expression Match Without Final Character
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. So …
1
vote
1answer
12 views
ISAPI_Rewrite Rule for version 2
How can I write the following rule in older version of ISAPI_rewrite ?
RewriteCond %{HTTP_HOST} ^fit-reisen.de$ [NC]
RewriteRule ^(.*)$ http://www.fitreisen.de/$1 [R=301,L]
I tried to write like
…
1
vote
1answer
107 views
Isapi filter not working on IIS 7 (which did work on IIS 6)
Hi
I have an Isapi dll which performs some basic URL rewriting. It works fine on II6. However, now my dev machine has been upgraded to Windows 7, I cannot get it to work under IIS 7
Is there …
1
vote
0answers
42 views
ISAPI_Rewrite ver 3.0 mapping
Hello,
I want to implement the mapping issue of this tool and I cannot make it work. This is the rule:
RewriteBase /
RewriteMap mapfile txt:mapfile.txt
RewriteRule /([^?/]+)\.asp …
1
vote
1answer
72 views
Can I write ISAPI filters in Perl?
I need to write an ISAPI filter for IIS 6.0 to rewrite ugly URLs into SEO-friendly URLs. Because of the need for string parsing and regular expressions, I'd prefer to use Perl to do this. There is a …
1
vote
2answers
297 views
Excluding a directory with ISAPI-Rewrite
I am trying to exclude a directory with ISAPI-Rewrite (note: this is a windows/iis port of mod-rewrite).
The directory I want to exclude is "api" when it is at the root of the site.
Here is my rule:
…
1
vote
4answers
111 views
1 domain two separate applications.
Hi, I have:
http://www.one.com
and
http://www.one.com/uk
www.one.com is the main site, but there is a UK version of this site which ideally needs to be in a subdirectory (/uk).
How do set IIS …
1
vote
2answers
343 views
ISAPI_Rewrite In IIS 7
I've been using ISAPI_Rewrite from Helicon (http://www.helicontech.com/isapi_rewrite/) on a Server 2003 box for years and have always had good luck with it.
I'm migrating all the sites on the 2003 …
0
votes
1answer
21 views
Using ISAPI Rewrite 3 & ASP.Net MVC?
I'm using ISAPI Rewrite3 on IIS6 for two Virtual Directories at the moment that contain Wordpress.
I need to setup some rules at the root of the site to redirect old urls to new urls:
i.e.
…
0
votes
1answer
19 views
URL_Rewriting with ISAPI_rewrite
I have a problem in ISAPI_rewrite 3.
a have a url like
www.example.com/web/index.html?ag=2154
What I want is, when the user writes this address it should be converted to agent's subdomain like
…
0
votes
2answers
38 views
Problem with Symfony routing with online project
I have a Symfony project on a Win XP / IIS 7 machine with Isapi rewrite installed. When I go to the frontend (my main) application, it seems that the routing simply doesn't work. I always end up on my …
0
votes
0answers
10 views
Using ISAPI_Rewrite 3 proxy over ssl
Here is my rule:
RewriteCond %{HTTP_HOST} ^www.siteone.com$ [NC]
RewriteRule ^/checkout/(.*)$ https\://www.sitetwo.com/checkout/$1 [NC,P]
What I am trying to do is use the checkout page on sitetwo …
