Quote:
Originally Posted by cameraguru
Just thought I'd share as I been having the 404 not found error, might help someone else out?
I had to edit my .htaccess file with followsymlinks and add a / at beginning of path to vbseo folder.
#start .htaccess code
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ /vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
|
Hello,
That would be like enabling RewriteBase setting (recommended way):
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
Thanks for sharing though!