How To Remove the www for your links
Posted: March 21st, 2004, 1:05 am
You need to have Apache's mod_rewrite and .htaccess enabled on your server to do this
add this code to your .htaccess file
Note that [R=301] redirects the request to the new URL and returns a 301 permanently moved reponse.
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]