error.log"
DocumentRoot "C:/Program Files/Apache Software
Foundation/Apache2.2/htdocs"
</VirtualHost>
HOWEVER,
we want to do the following instead
http://www.foobar.com
http://www.foobar.com/blogwhy
does the following NOT work?
<VirtualHost *:80>
ServerName
www.foobar.com
<Proxy *>
AddDefaultCharset Off
Order deny,allow
Allow from all
</Proxy>
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
</VirtualHost>
<VirtualHost *:80>
ServerName
www.foobar.com
ServerPath /blog
ErrorLog "C:/Program Files/Apache Software
Foundation/Apache2.2/logs/error.log"
DocumentRoot "C:/Program Files/Apache Software
Foundation/Apache2.2/htdocs"
</VirtualHost>