【问题】在浏览器输入localhost:8080/admin,如何自动跳转?
1.前台:自动跳转(比如,输入 localhost:8080,然后跳转到 localhost:8080/index.jsp),是通过web.xml里配置的,如下:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
2.后台:自动跳转是如何跳转的呢?(比如,输入 localhost:8080/admin,然后跳转到 localhost:8080/admin/后台登陆首页)
补充:配置文件web.xml里面,有一个过滤器,它拦截所有的*.jsp页面:
<filter>
<filter-name></filter-name>
<filter-class></filter-class>
</filter>
<filter-mapping>
<filter-name></filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
参考:http://www.iteye.com/problems/101520
你后台首页设置成index.html不就行了
MVC的话是设置默认路由.
其它的是IIS里设置默认首页