Web.xml:欢迎文件显示不正确

发布于 2024-11-28 07:27:03 字数 1078 浏览 2 评论 0原文

欢迎文件在主机上未正确显示。

web.xml:

  <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

在本地 Tomcat 上:

http://localhost:8099/Teal-0.1-BETA/ 没问题
等于
http://localhost:8099/Teal-0.1-BETA/index.html 没问题

托管 :
http://domain/index.html 没问题

http://domain/ 显示不正确

据我观察,这也显示不正确:

 http://domain/index.xhtml

我怀疑 web.xml配置。看起来像 .html.xhtml 扩展中的问题。

真实文件名为 index.xhtml

Welcome file is not displayed correctly on hosting.

web.xml:

  <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

on local Tomcat:

http://localhost:8099/Teal-0.1-BETA/ is OK
equals to
http://localhost:8099/Teal-0.1-BETA/index.html is OK

on hosting:
http://domain/index.html is OK

http://domain/ is displayed non correctly

As I observed this is displayed not correctly too:

 http://domain/index.xhtml

I suspect web.xml config. Looks like problem in .html vs .xhtml extension.

Real file name is index.xhtml

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅浅 2024-12-05 07:27:03

我认为问题在于您使用 JSF,但 Tomcat 仅使用 JSP 引擎呈现欢迎文件。这可能已在本地的较新 Tomcat (7.x) 中得到解决,但服务器使用较旧的 Tomcat。

但这只是我的猜测。我仍然没有太多信息。

无论哪种情况,请尝试将欢迎页面设置为普通文件并立即重定向到 /index.html 。或者更好的是,在 Apache(或 Tomcat 前面的任何内容)中处理它。

I think that the problem is that you use JSF, but Tomcat renders welcome-file only with JSP engine. That might have been adressed in newer tomcat (7.x) which you have locally, but server uses older Tomcat.

But that's just my guess. Still I don't have much info.

Either case, try setting a welcome page to a plain file with immediate redirection to /index.html . Or better, handle it in Apache (or whatever you have in front of Tomcat).

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