Hi Manish,

What we do in Apache, is a combination of mod_rewrite and mod_proxy, as
the latter is just able to proxy "directories" on its own.
Something like that:

...
RewriteEngine on
RewriteRule ^(.*)\.jsp$ /proxy_orion_server/$1.jsp [P]
...
ProxyRequests On
ProxyPass        /proxy_orion_server/ http://www.orion.host:8080/
ProxyPassReverse /proxy_orion_server/ http://www.orion.host:8080/
...

I hope it helps,
D.

"Manish M. Shah" wrote:
> 
> Hi guys,
> 
> We have to use Apache as our web server and Orion as the application
> server. As a result, I need to forward all *.jsp files from Apache to
> Orion. I know about the proxy setup in Apache. I also know about
> forwarding *.html/*.jpg/etc files from Orion to Apache, but we need to
> forward from Apache to Orion. Has anyone had any luck or success with
> that?
> 
> Thanks.
> 
> Manish

Reply via email to