try stick this in a .htaccess in the main site directory
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
if you already have a .htaccess with the line RewriteEngine on then there's no need to duplicate that line.
Regards!