Page 1 of 1

How To Remove the www for your links

Posted: March 21st, 2004, 1:05 am
by ccb056
You need to have Apache's mod_rewrite and .htaccess enabled on your server to do this

add this code to your .htaccess file

Code: Select all

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Note that [R=301] redirects the request to the new URL and returns a 301 permanently moved reponse.