I want to redirect www to my root domain, so I have written the following lines in the .htaccess file.
But code doesn't work.
Is there another way I can redirect www to the root domain?
Code:
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www.mydomian.com [NC] RewriteRule ^(.*)$ http://mydomain.com/$1 [L,R=301]
Is there another way I can redirect www to the root domain?
Comment