.htaccess permanent redirect to www
This snippet will force the www
to always be in thew URL. I don't know if that helps you or not:
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} !^(www\.|$) [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]