submitted by: Snippissimo

.htaccess: Add WWW to URL

Use this mod_rewrite snippet to automatically add the www subdomain to the URL.


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