Posted in URL Rewriting on April 24th, 2007 6 Comments »
To redirect all HTTP requests to HTTPS with ISAPI Rewrite you can use the following rewriting rules in your httpd.ini file:
# redirect all http requests to httpsRewriteCond %HTTPS (?!on).* RewriteCond Host: (.*) RewriteRule (.*) https\://$1$2 [I,RP]
ISAPI Rewrite, URL Rewriting
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web […]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
Posted in URL Rewriting on October 21st, 2006 No Comments »
Since I’m an ASP.NET developer I’ll share my experience with URL rewriting options that I have tried in mine, guess what, ASP.NET web sites. So far I know three options to do this task:
ASP.NET 2.0 Mapping
Using UrlRewritingNet.UrlRewrite
Using ISAPI Rewrite filter - this is the most powerful option.
ASP.NET 2.0 URL Mapping
The build […]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.