Forum Moderators: open

Message Too Old, No Replies

ISAPI Rewrite Tips

ISAPI Rewrite Code Examples

         

pageoneresults

5:01 pm on Jun 23, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



301 Moved Permanently from non-www to www

RewriteCond Host: ^example\.com
RewriteRule (.*) http\://www\.example\.com$1 [I,RP]

pageoneresults

5:03 pm on Jun 23, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



301 Moved Permanently from http to https

RewriteCond %HTTPS ^on$
RewriteRule /robots.txt /robots.https.txt [I,O,L]

pageoneresults

5:05 pm on Jun 23, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



301 Moved Permanently from old file to new file

RewriteRule /sub/oldfile.htm http://www.example.com/sub/newfile.htm [I,O,RP,L]

pageoneresults

5:35 pm on Jun 23, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Convert all upper case to lower

RewriteCond URL ([^?]+[[:upper:]][^?]*).*
RewriteHeader X-LowerCase-URI: .* $1 [CL]

RewriteCond Host: (.+)
RewriteCond X-LowerCase-URI: (.+)
RewriteRule [^?]+(.*) http\://$1$2$3 [I,RP]