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)