when I put the .htaccess in my vb root, it goes Forbidden 403.
I think that may virtualhost let the something goes wrong.
this is my .htaccess
Quote:
RewriteEngine On
RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
|
this is my virtualhost
Quote:
<VirtualHost *>
ServerName www.test.net
DocumentRoot C:/AppServ/www/
ErrorLog logs/error.log
CustomLog "|C:/AppServ/Apache2.2/bin/cronolog.exe logs/access_%Y%m.log" combined
</VirtualHost>
<VirtualHost *>
ServerName www.club.net
DocumentRoot C:/AppServ/www/club
ErrorLog logs/error-club.log
CustomLog "|C:/AppServ/Apache2.2/bin/cronolog.exe logs/www.club.net/access_%Y%m.log" combined
</VirtualHost>
|