-2

I have one URL http://ip:port/Parameter (apache LoadBalancer), If I hit this URL, apache LB should rewrite URL as http://ip:port/application/Adaptor/Parameter.

Parameter this value will change always. How can achieve this by using Apache Load Balancer?

I have configured property files.

  1. mod-jk.conf

  2. workers.properties

  3. uriworkermap.properties

Arun Binoy
  • 101
  • 3

1 Answers1

0

After adding following conditions in httpd.conf, issue closed. Thanks for your support.

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteRule ^/(.*)$ http://10.0.0.93:18180/TEST/HttpAdapter/$1 [NC]
  </IfModule>
Arun Binoy
  • 101
  • 3