0

I need to write a rule for url masking in httpd even if the target url keep on changing. example My request url should always be static like: http://request.com/ and target should first go to the http://target.com/login.html and also after the login target url will change like http://target.com/myaccount but on browser it should be always http://request.com/.

i.e. for any of the url change in the target host the primary should always be static. like :- http://request.com/ --> http://target.com/*

Nitesh Kumar
  • 875
  • 4
  • 20
  • 39

1 Answers1

0

You can't do that, or at least with the data you provide.

How can you have the same URL always if the backend destination changes, how are you going to calculate which destination to deliver the request.

Daniel Ferradal
  • 2,727
  • 1
  • 13
  • 19