我试图在 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>
但是没有成功。