Could you please help me how to configure apache so that apache2.2 will work
for my case?

When to user will start URL with https://<ipaddress>/wbm_<new_ip/
then new_ip should be called in the new window so that https://<new_ip>/
will be opened.

RewriteRules are:
RewriteRule ^/wbm_(.*)$     http://$1 [P]
RewriteRule ^/wbm_(.*)/(.*)    http://$1/$2  [P]

Is it possible to write down to the configuration file of apache following:
ProxyPassReverse /wbm_(.*)/ http://$1/

How to configure it over ProxyPass and ProxyPassReverse?

thank you in advance
Petr
2009/9/22 Tom Evans <tevans...@googlemail.com>

> On Tue, 2009-09-22 at 14:59 +0200, Petr Hracek wrote:
> > Unfortunatelly I have found that we have a system where is installed
> > apache 1.3.
> > It would be good to have solution for both. Apache 1.3 and Apache 2.2
> >
> > regards
> > Petr
>
> If you take 1.3 and add the missing features, then you would have
> 2.2 ...
>
> If you really can't update the apache 1.3 to apache 2.2, then you can
> run apache 2.2 in front of 1.3, and proxy to it. Apache like this can be
> very lightweight and effecient, eg using event MPM etc.
>
> Cheers
>
> Tom
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
>   "   from the digest: users-digest-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>

Reply via email to