Greetings to all,
I am trying to configure my apache server
to serve pages from an underlying jetty application server.

This jetty servers hosts two applications in following paths

http://localhost:7070/bw/

and

http://localhost:7070/feedbrn/

my configuration is like this



        RewriteEngine On
        RewriteRule ^/$ http://localhost:7070/bw/ [P,L]

        RewriteRule ^/bw$ http://localhost:7070/bw/ [P,L]
        RewriteRule ^/bw/admin/(.*)  http://localhost:7070/bw/ [P,L]
        RewriteRule ^/bw/feedbrn/(.*)  http://localhost:7070/feedbrn/ [P,L]
        RewriteRule ^/bw/alfrescoUser/(.*)  http://localhost:7070/bw/ [P,L]
        RewriteRule ^/bw/(.*) http://localhost:7070/bw/$1 [P,L]
        ProxyPassReverse / http://localhost:7070/bw


This does not seem to detech the feedbrn part.
How can I fix this problem?
Thanks in advance.

Reply via email to