Monday, May 14, 2012

Force .htaccess to add www

In order to force your domain using www, you can use following .htaccess snippet. This snippet makes htaccess add www to your domain name.

RewriteEngine on
 
rewritecond %{http_host} ^stuntsnippets.com [nc]
rewriterule ^(.*)$ http://www.stuntsnippets.com/$1 [r=301,nc]

No comments:

Post a Comment