I finally figured out why the mod couldn't see my sitemap, it's because on 1&1 servers you can only execute rewrite rules from an .htaccess in the root where your domain is attached. Dumb but true, so I ran a test in a test sub-dir and this worked:
RewriteRule ^test/foo.html /test/bar.html [R]
However the vBSEO Sitemap code still doesn't, even when adjusted to the forums DIR:
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ /forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
Maybe it's because I need a /forum in the first part too but this stuff isn't exactly easy to understand. Suggestions?
UPDATE:
Ah this fixed it.
RewriteRule ^forum/((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ /forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
|