0

我试图在 tomcat 关闭时显示自定义页面,为了做到这一点,我正在使用 apache 服务器。我正在尝试将所有请求重定向到 tomcat (localhost:8080),除了以“/error”开头的请求,我该怎么做?我在 httpd.conf 文件中尝试过这样的事情:

ErrorDocument 503 /error/503.html

<IfModule proxy_http_module>

ProxyPass /error http://localhost/ retry=0
ProxyPassReverse /error http://localhost/

ProxyPass / http://localhost:8080/ retry=0
ProxyPassReverse / http://localhost:8080/

</IfModule>

但是没有成功。

4

1 回答 1

0

在问你的问题之前,你有没有看过 ProxyPass 的 httpd 文档?

你要

ProxyPass /error !

排除以/error

于 2013-10-07T10:03:22.800 回答