Also, I recommend you setup a 301 permanent redirect. This is because, if the SE's find both www and non www links of your site, they will class it as two different sites, but with the same content -- meaning you get penalized for duplicate content.
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^YourSite\.com [nc]
RewriteRule (.*) http://www.YourSite.com/$1 [R=301,L]
Replace "Yoursite.com" with your own domain.
Regards Jason