gpt4 book ai didi

tomcat - 空页面而不是自定义tomcat错误页面

转载 作者:行者123 更新时间:2023-11-28 21:46:44 26 4
gpt4 key购买 nike

我的设置:Apache 2.2 + Tomcat 6.0 @ Windows 2008 R2 64bit

  • 静态网页:/
  • servlet:/foo
  • tomcat和apache通过mod_jk连接
  • 404.jsp放在tomcat\webapps\ROOT下

tomcat\conf\web.xml:

<error-page>
<error-code>404</error-code>
<location>/404.jsp</location>
</error-page>

apache\conf\extra\httpd-ssl.conf:

JkMount /foo/* worker1
JkMount /404.jsp worker1

当我打开 https://...../404.jsp显示我的自定义错误页面。但是当我打开 https://...../foo/nonexisting.html显示一个空白页面。

如果我删除 <error-page>...</error-page>来自 web.xml 的代码并打开 https://...../foo/nonexisting.html然后显示tomcats自己的404。

有什么提示吗?

最佳答案

Jkmount 应该有上下文作为参数,例如:

JkMount /mycontext/* worker1

然后以这种方式访问​​页面:

https://mycontext/someservlet/

https://mycontext/foo/nonexisting.html 

关于tomcat - 空页面而不是自定义tomcat错误页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3856145/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com