301 redirect from www to without www using .htaccess

January 5, 2016 17 egor

Example of implementation

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.mysite\.com$ [NC]
RewriteRule ^(.*)$ http://mysite.com/$1 [R=301,L]