redirects "www.site.com" to "site.com" with .htaccess
1 RewriteCond %{HTTP_HOST} ^www.(.*) 2 RewriteRule ^(.*) http://%1/$1 [L,R=301]
1 RewriteCond %{HTTP_HOST} ^www.(.*) 2 RewriteRule ^(.*) http://%1/$1 [L,R=301]