views:

91

answers:

2

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.

+4  A: 
Frank V
+1  A: 

This is not related to your .htaccess file. Wordpress versions since 2.3 will do 301 redirects based on the domain you have set set for your "Blog address(URL)" in Settings → General.

Technowise