Rules for htaccess redirect
I would recommend inserting this code just after the line reading "RewriteEngine On":
[Redirect www to non-www]
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
[Redirect non-www to www]
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]