I have a wordpress powered blog. But for some reason when I enter url, www.mysite.com it always redirects to http://mysite.com and takes out the www. How do I get rid of that redirect? what to do?
this is whats in my .htaccess file: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Make sure that you have entered www.mysite.com as your blog URL in blog setting(in admin panel). Kailash