How to remove www from a Wordpress site using .htaccess (replace domain.com with your domain)
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] </IfModule>