Web.xml:欢迎文件显示不正确
欢迎文件在主机上未正确显示。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题在于您使用 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).