Hello All
I need some help with the .htaccess (Ive searched this thread but couldnt work out the answer).
I have the .htaccess below at
www.mysite.com and it works fine
# mod_rewrite in use
RewriteEngine On
# Rule for duplicate content removal : www.domain.com vs domain.com
RewriteCond %{HTTP_HOST} ^mysite\.com$ [NC]
RewriteRule (.*)$ http://www.mysite.com/$1 [R=301,L,NC]
I have the .htaccess below at
www.mysite.com/forum and it gives me big problems
# Used for 'vbseo_sitemap'
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.mysite\.com$ [NC]
RewriteRule ^(.*) http://www.mysite.com/forum/$1 [QSA,L,R=301]
RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
Can anybody tell me what Ive done wrong
Many Thanks
VinylJunky