请使用JSF,我想知道我必须在 WebContent / index.xhtml 中放置什么才能重定向到 WebContent / WEB-INF / index.xhtml 感谢
答案 0 :(得分:1)
您无法轻松访问 WEB-INF 文件夹中的 .xhtml 文件,因为它不属于Java EE规范,服务器将回复任何文件尝试访问404错误的文件。请参阅this。
您应该重新考虑您的意图,并为您想要访问的文件创建一个单独的文件夹。
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">
<jsp:forward page="/your/page.xhtml" />
response.sendRedirect("/your/page.xhtml")
extCtx.redirect("page.xhtml");
希望这有帮助,玩得开心!
答案 1 :(得分:1)