使用 Apache HTTP 服务器提供错误页面

发布于 2024-09-17 04:10:27 字数 194 浏览 6 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绮筵 2024-09-24 04:32:04

在 apache 配置的 virtualhost 部分中指定“ErrorDocument”指令:

ErrorDocument 404 /path/to/my404page.html
ErrorDocument 500 /path/to/my500page.html

此外,由于您使用的是 mod 代理,因此您可能希望启用 ProxyErrorOverride 来让 apache 为代理内容生成自定义错误文档。

另请查看文档

Specify the "ErrorDocument" directive in the virtualhost section of your apache config:

ErrorDocument 404 /path/to/my404page.html
ErrorDocument 500 /path/to/my500page.html

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文