I have the strangest problem....
RewriteEngine on
# Automatically redirect back to http for anything not login.php
RewriteCond %{REQUEST_URI} !^/login.php [NC]
RewriteCond %{REQUEST_URI} ^/ [NC]
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
Pretty simple, if someone goes to [
example.com,...] it redirects them to http://www.example.com
This works on all browsers except Internet Explorer, which stays on https.
What am I missing here? Does IE need a special flag in order to get this to work?
[edited by: incrediBILL at 4:11 am (utc) on Apr 15, 2012]
[edit reason] changed to example.com to fix links [/edit]