How to redirect all traffic to www version of your website
Goto the document root of your websiteEdit the .htaccess file located there.
Add the following code to the file
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
Save and exit the file
Restart your web server
Article Details
Last Updated
4th of March, 2010
Related Articles
No related articles were found.
Attachments
No attachments were found.


