How to Redirect non-www domain to www
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]
RewriteCond %{HTTP_HOST} ^yourdomain\.com
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
Related PostsIf you liked How to Redirect non-www domain to www; the posts below might interest you too:
|



