I want to permanently redirect the www.example.com form of my domain into the example.com form.
I tried these recommended .htaccess lines but they dont work for me:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
There are some other Rewrite rules and conditions in the file and I tried placing these lines before and after them. Does not work either way.
Any suggestions?