Quote:
Originally Posted by StormBreaker
Use this htaccess to redirect www to non www
PHP Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
|
Appreciate the info Storm, but that didn't seem to make any difference.
I added that to what was already there, then tried deleting what was already there, & a few other combinations..
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^gamelobby\.com$
RewriteRule ^(.*)$ http://www.gamelobby.com/$1 [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Any other ideas, or do you see that I did something wrong.?
Thanks in advance