Definitely you should use 301 permanent redirect. Google treats www and non-www as two different sites and even can ban your sites because of duplicate content..
Here is what i use :
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
That basically redirects all non-www request to
www.domain.com
With 301 redirect pagerank will also be transferred