I am using Joomla and vBulletin for my site and have two different ".htaccess"s The one in the root directory is working fine (for Joomla!)... but I am having problem in redirecting www to Sans-www for the board... its not redirecting... To make it more simple: my forum should redirect www.mysite.com/forums to mysite.com/forums any tips guys?
Without seeing the current .htaccess it is a bit hard to judge but basically you would say: RewriteCond %{HTTP_HOST} !^example\.com$ (if Hostname does not start with example.com) RewriteRule ^(.*)$ http://example.com/$1 [R=301,L] (redirect to example.com/URI )