Apache ProxyPass或ProxyPassMatch从代理中排除文件
我将VirtualHost设置为将所有请求代理到在端口9000上运行的另一台服务器。 我有的 : ProxyPass / http://localhost:9000/ ProxyPassReverse / http://localhost:9000/ 我尝试过的 ! ProxyPass /test.html http://localhost:9000/ ProxyPass /test.html ! http://localhost:9000/ ProxyPassMatch !^/(.*\.html)$ http://localhost:9000/$1 没有一个起作用... 我想从一个文件中排除一个文件或一组文件,该文档说了一些有关“!指令在您不希望反向代理子目录的情况下很有用。”,但是没有示例。对于那种情况。