You could also use a rewrite code in the htaccess file to "silently" redirect users to the URL without the www
Something like this:
Code: RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Substitue your web URL in as needed.
I hope that helped.