I'm trying to redirect my site so that when you type mysite.com it will redirect you to www.mysite.com. I've tried adding this to .htaccess but it does not work for some reason..
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]