matthewselby
8/22/2016 - 6:26 AM

How to remove www from a Wordpress site using .htaccess (replace domain.com with your domain)

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>