I downloaded this and read the install instructions.
However my forum home is not my website root. It's one directory down from the website root and my .htaccess file is in my root, not my forums directory. I have php code that runs in the root and one of the links off the php code in the root leads to the forums directory.
therefore my question is as follows:
1) I assume that the .htaccess code that's included in this hack which follows should be changed from:
PHP Code:
RewriteEngine On
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
to:
PHP Code:
RewriteEngine On
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/forums/vbseo_getsitemap.php?sitemap=$1 [L]
is this correct?
thanks in advance.