| Posted: 23 August 2007 at 11:56am | IP Logged
|
|
|
I have this code in my httpd.ini
# Rewrite all .http://<whatever>.<domain> to .www.<whatever>.<domain> RewriteCond %HTTPS off RewriteCond Host: (?!www\.)(.+) RewriteRule (.+) http\://www.$1$2 [I,RP]
# Rewrite all .https://<whatever>.<domain> to .www.<whatever>.<domain> RewriteCond %HTTPS on RewriteCond Host: (?!www\.)(.+) RewriteRule (.+) https\://www.$1$2 [I,RP]
it works for most of the websites on my server but for some rason it doesnt work for one - see http://chumbadeals.com/
|