Apache2

使用位置標籤中的 apache mod_proxy 重寫 url 的哪些組件?

  • May 7, 2020
<Location /partA>
   ProxyPass https://example.com/partB
   ProxyPassReverse https://example.com/partB
</Location>

遠端伺服器上呼叫了哪些 URL?

http://example.net/testA/partC被呼叫。是在遠端伺服器上呼叫的 URL

或者替代品

URL 的哪些部分被替換?

Apache 文件說這是第一個

https://example.com/partB/partC

位置被丟棄。

引用自:https://serverfault.com/questions/1016047