Redirecting non-WWW to WWW domains
In order to redirect your non-WWW domain to a www domain, simply add this rule in your .htaccess file:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]