我在 web.xml 中有如下定义的欢迎页面
<welcome-file-list>
<welcome-file>templates/Template.jsf</welcome-file>
</welcome-file-list>
项目的上下文根是 TestProject。当我第一次加载项目时,url 是 localhost:8080/TestProject。我在主页上有一个名为“HOME”的按钮,单击该按钮应从任何其他页面重定向到主页。现在问题出在单击此按钮时,它会重定向,但 url 变为 localhost:8080/TestProject/templates/Template.jsf。如何锁定这个?
按钮的 html 代码如下
家