Remove WWW

You can elect to automatically having the “www” removed from your URL using a 301 redirect. This way, your URL will automatically be changed from www.example.com to example.com, even if the “www” is typed in the address box.

RewriteEngine on
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^www.example.come$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]