0
<Location /partA>
    ProxyPass https://example.com/partB
    ProxyPassReverse https://example.com/partB
</Location>

What URLs are called on the remote server?

http://example.net/testA/partC is called. Is the URL called on the remote server

Or the alternatives

What parts of the URL are replaced?

Interlated
  • 341
  • 1
  • 3
  • 9

1 Answers1

2

Apache docs say it's the first

https://example.com/partB/partC

The location is dropped.

Gerard H. Pille
  • 2,569
  • 1
  • 13
  • 11