I currently have this in my htaccess file and it redirect zombieworld. org to www. zombieworld.org but if you type in zombieworld.org/forums it dosnt redirect to www.zombieworld.org/forums why and how do i fix it?
TRy RewriteEngine on RewriteCond %{HTTP_HOST} !^www.zombieworld\.org$ [NC] RewriteRule ^(.*) http://www.zombieworld.org/$1 [L,R=301] Code (markup):
RewriteEngine on RewriteCond %{HTTP_HOST} ^zombieworld.org$ RewriteRule ^(.*)$ http://www.zombieworld.org/$1 [L,R] It works OK on one of my sites.
Check whether there's .htaccess file under your forums directory, e.g /var/www/forums/.htaccess. If there's one, enter your redirect code at top of that file.