Redirect www to non-www without specifying the domain name
↳ Added by admin → May 6, 2011 in Htaccess. ⌈no comments⌋To redirect www.scriptplazza.com to scriptplazza.com without specifying the domain name use following snippet.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
