Firstly you will need to make sure that your configuration.php has the $mosConfig_live_site path set to what you want. Either with the www or without the www.
then you need to add one of the following to your .htaccess rewrite.
if you want your $mosConfig_live_site to have the www,
Code:
########## The code to redirect mywebsite.com to www.mywebsite.com follows:
RewriteCond %{HTTP_HOST} !^www\.mywebsite\.com [NC]
RewriteRule ^(.*)$ http://www.mywebsite.com/$1 [L,R=301]
########## End redirect section
and as follows if you don't want it to have the www
Code:
########## The code to redirect www.mywebsite.com to mywebsite.com follows:
RewriteCond %{HTTP_HOST} ^www.mywebsite.com [NC]
RewriteRule ^(.*) http://mywebsite.com/$1 [L,R=301]
########## End redirect section