You can use .htaccess to automatically add or remove the "www".
This is the code I used to remove "www".
Code:
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^www\.xenweb\.net [nc]
rewriterule ^(.*)$ http://xenweb.net/$1 [r=301,nc]