我在管理文件夹中有一个 Login.jsp 页面。现在,当用户访问 Admin 文件夹时,登录页面应该是第一个执行的。
下面是我的项目目录结构。
如何在 web.xml 中进行配置,以便当我访问 Admin 文件夹时将执行 Login.jsp 而不是 index.jsp
web.xml 的内容如下所示
<display-name>RealCMS</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>