I need to do the following in order to access stats for each based
virtual host
when typing url   www.virtualhost1.com/stats  or
www.virtualhost99.com/stats
server page located under  /var/reports/virtualhost1   or
/var/reports/virtualhost99
I've tryed on my httpd.conf:
RewriteEngine   on
RewriteCond     %{HTTP_HOST}    ^www\.[^.]+$
RewriteRule     ^(.+)           %{HTTP_HOST}$1  [C]
RewriteRule     ^www\.([^.]+)(.*)/stats    /var/reports/$1
Apache produces a 404
any points to fix this ?
Bests,
jaume.