Forcing / eliminating the WWW

by Nish Vamadevan on 15/08/2006 · View Comments

If you have a website and want to force www.domain.com Use the following .htaccess code

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

If you want to eliminate the www prefix like domain.com then use the following .htaccess code


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

Leave a Comment

blog comments powered by Disqus

Previous post:

Next post: