Hi Guys,
Im using the defaul .htaccess file that comes with vanilla.
My forum sites in a filder /forum
Does anyone know what to add to the .htaccess file to re-write all www URLs to non www.
Have tried a bunch of things but no joy.
Any examples would be helpful!
0
Comments
After "RewriteEngine On" add this (obviously substituting your domain name):
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]