Ok, so ive done some reading up...
Im still getting my head around htaccess files etc.
But i read that i should set my preffered domain to either www or non-www.
Atm it is set to both, which im lead to believe isnt good.
So should my plan of action be to set it to www and then use htaccess file to point any non www to www?
Im still getting my head around htaccess files etc.
But i read that i should set my preffered domain to either www or non-www.
Atm it is set to both, which im lead to believe isnt good.
So should my plan of action be to set it to www and then use htaccess file to point any non www to www?
Code:
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.roofingwarehouse\.co.uk$ [NC] RewriteRule ^(.*)$ http://www.roofingwarehouse.co.uk/$1 [L,R=301]
Comment