ProxyPass
指令有什么区别:
ProxyPass / http://localhost:8080/ nocanon ProxyPassReverse / http://localhost:8080/
和一个<Proxy>
指令:
<Proxy http://localhost:8080/*> Order deny,allow Allow from all </Proxy>
在Apacheconfiguration文件?
我经常在同一个virtualhost
部分看到这两个,我不知道有什么区别。
使用ProxyPass
(链接)指令,首先定义一个代理。 <proxy ...>
(link)部分可以包含代理内容的处理指令。 这是你可以通过阅读文档学习自己,因此downvotes。