WordPress Address (URL) Reverts back
You should check your .htaccess file at the root of your domain. To remove www. you could add something like this: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.example.com$ [NC] RewriteRule ^(.*)$ http://example.com/$1 [R=301,L] Alternatively, it could be a setting from your web host’s panel. For example, DreamHost has the option to add or remove “www.” from urls … Read more