【问题】在浏览器输入localhost:8080/admin,如何自动跳转?
1.前台:自动跳转(比如,输入 localhost:8080,然后跳转到 localhost:8080/index.jsp),是通过web.xml里配置的,如下:
index.html
index.htm
index.jsp
2.后台:自动跳转是如何跳转的呢?(比如,输入 localhost:8080/admin,然后跳转到 localhost:8080/admin/后台登陆首页)
【问题】在浏览器输入localhost:8080/admin,如何自动跳转?
1.前台:自动跳转(比如,输入 localhost:8080,然后跳转到 localhost:8080/index.jsp),是通过web.xml里配置的,如下:
index.html
index.htm
index.jsp
2.后台:自动跳转是如何跳转的呢?(比如,输入 localhost:8080/admin,然后跳转到 localhost:8080/admin/后台登陆首页)
收起
当前问题酬金
¥ 0 (可追加 ¥500)
支付方式
扫码支付
如果用Struts的话,直接在配置文件中配置一下跳转规则就行了。
基本就是像下边这样
[code="java"]
/admin/index.jsp
[/code]
报告相同问题?