Forum Moderators: mack
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept
cookies.
Anyone know what i am doing wrong?
thanks
www.example.comversion of your site or you could use mod_rewrite [httpd.apache.org] if you don't have access to the Apache configuration.
Out of curiosity why does that command send the website into a loop?
thanks
# Redirect www to non www
RewriteCond %{HTTP_HOST} !^example\.com$
RewriteRule (.*) http://example.com/$1 [R=301,L]
The code you have sends *anything* (including [mywebsite.com...] to [mywebsite.com,...] it isn't saying to check for the www, just to 301 all.