On Tue, Jul 20, 2004 at 05:20:53PM +0200, Graham Leggett wrote:
> The "httpd serves the static content" feature can be implemented through
> extending ProxyPass to support regular expressions, for example:
>
> ProxyPass /myWebapp/*.jsp http://tomcat/myWebapp/
RewriteCond %{REQUEST_URI} ^/(.*)\.jsp$
RewriteRule (.*) http://127.0.0.1:8080$1 [P,L]
RewriteCond %{REQUEST_URI} ^/(.*)/servlet/(.*)$
RewriteRule (.*) http://127.0.0.1:8080$1 [P,L]
.. is what I have, no need for new features :)
--
Colm MacC�rthaigh Public Key: [EMAIL PROTECTED]