使用 Apache HTTP 服务器提供错误页面
我使用 Tomcat 来托管我的 Web 应用程序,并在其之上使用 mod 代理进行负载平衡的 apache http 服务器。
当我的应用程序抛出 404 或 500 错误时,我想通过 apache http 服务器而不是 tomcat 服务器提供错误页面。这是因为我通过 apache 提供所有静态内容,并且不希望它成为战争的一部分。有办法做到这一点吗?
I am using Tomcat for hosting my web application and apache http server on top of it using mod proxy for load balancing.
When my application throws a 404 or 500 error, I want to serve the error pages through apache http server rather than tomcat server. This is because I am serving all of my static content through apache and don't want it as part of war. Is there a way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 apache 配置的 virtualhost 部分中指定“ErrorDocument”指令:
此外,由于您使用的是 mod 代理,因此您可能希望启用 ProxyErrorOverride 来让 apache 为代理内容生成自定义错误文档。
另请查看文档
Specify the "ErrorDocument" directive in the virtualhost section of your apache config:
Additionally, since you're using mod proxy, you may you may wish to enable ProxyErrorOverride to let apache generate custom error documents for proxied content.
Also check out the documentation