# Remove www from any URLs that have them:
(paste in .htaccess file and swap ‘example’)
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
# Remove www from any URLs that have them:
(paste in .htaccess file and swap ‘example’)
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]