How to Redirect non-www domain to www

05 July 2010 by Rick ~ 0 Comments 399 views

If you want to redirect a non-www domain to a www domain

http://example.com to http://www.example.com

Add the following lines to your .htaccess file

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

Subscribe by E-mail:

« »
Add a Comment

Use [code] example piece of code [/code] to insert code into your comment.