使用Apache作为代理服务器+ Tomcat

时间:2013-10-07 09:38:22

标签: apache tomcat proxy errordocument

我正在尝试在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>

但没有成功。

1 个答案:

答案 0 :(得分:0)

在询问您的问题之前,您是否查看了ProxyPass的httpd文档?

你想要

ProxyPass /error !

排除以/error

开头的路径