Feed on
Posts
Comments

Archive for the 'URL Rewriting' Category

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.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

URL Rewriting under IIS

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.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati