If your website is runing under Apache, you can create (or add) a simple .htaccess file and type this content :
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{http_host} ^www.example.com[nc]
RewriteRule ^(.*)$ http://example.com/$1 [r=301,nc]
IfModule>
Don't forget to replace
http://example.com with your site's URL. This tip come from
vortexmind.