RedirectMatch ^/foo(/)?$ /foo/someplace_specific.html
RedirectMatch ^/foo/index.html$ /foo/someplace_specific.html
ProxyPass /foo/index.html !
ProxyPass /foo/ http://localhost:8009/foo/
ProxyPassReverse /foo/ http://localhost:8009/foo/
Unfortunately, this doesn't seem to be working for me: a request for
/foo/index.html gives me a 404 error *and a JSESSIONID from Tomcat*, so
I'm fairly certain that the request is being proxied.