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]Code language: JavaScript (javascript)

Leave a Reply

Your email address will not be published. Required fields are marked *