submitted by: Snippissimo

.htaccess: Remove WWW from URL

This mod_rewrite condition allows you to remove the "www" from a url and redirect the user to the non-www version.


code snippet:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.snippetdb.com$ [NC]
RewriteRule ^(.*)$ http://snippetdb.com/$1 [R=301,L]