I would like to modify my .htaccess file so that when someone comes into my site without typing www the site always redirects them to the www version. For example, if my ur
Add something like this immediately after RewriteEngine on:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com$ RewriteRule ^(.*) http://www.example.com/$1 [R=301]