Hello.
I've recently set up a wordpress blog and it's removing the www from all URLs. I've disabled all plug-ins, and it still does that.
My .htaccess is:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I don't see anything wrong with it.
It's the lastest version of WP.
How can I fix it? I would like to have all URLs with www.
Thanks in advance.