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]
Last 5 posts by Nish Vamadevan
- OSPF Loopback Interface - December 17th, 2009
- Convert IPv4 into IPv6 - November 15th, 2009
- TCP Window Calculation - October 20th, 2009
- How to configure PPP Multilink - September 16th, 2009
- How to Configure Frame-Relay - September 15th, 2009
- IP helper-address Explained - August 18th, 2009