Using .htaccess to redirect www to non-www or vice versa

To redirect from www to non-www, edit your .htaccess file suc as:

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

and to redirect from non-www to wwww:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

Prev PostUsind find command
Next PostTar & Untar

Leave a reply