指令之间有什么区别ProxyPass
:
ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
以及一条<Proxy>
指令:
<Proxy http://localhost:8080/*>
Order deny,allow
Allow from all
</Proxy>
在 Apache 配置文件中?
我经常在同一个virtualhost
部分看到这两者,但我不知道它们有什么区别。