How To Remove the www for your links

Tips and help with HTML, CSS, JavaScript, and site development.
Post Reply
User avatar
ccb056
Site Administrator
Posts: 981
Joined: January 14th, 2004, 11:36 pm
Location: Texas
Contact:

How To Remove the www for your links

Post 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.
Post Reply