Hi guys, I wanted to redirect my non-www url to www url which I was able to do it successfully with following code I found here on DP RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com [NC] RewriteRule ^(.*) http://www.yourdomain.com/$1 [L,R=301] But there is one small problem. I have a wordpress blog. And when someone visits my blog with old link which looks like http:// mydomain.com/how-i-started-blogging/ he gets redirected to my home page http:// mydomain.com and not to http:// www.mydomain.com/how-i-started-blogging/ any suggestions? Jack