Please nobody shout at me to search the forum for an answer to this question. I know there are a 1000 threads on 301 redirect but I can't get my head round any of them. I want both www and non.www to redirect to www.domain.com/folder/ At the moment I have this in .htaccess Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domain.com [nc] rewriterule ^(.*)$ http://www.domain.com/folder/$1 [r=301,nc] Now the non-www redirects just fine but www does not. What do I need to add or change to get them both pointing to the same place?