tomcat中server.xml里配置首页文件名

来源:百度知道 编辑:UC知道 时间:2024/06/09 13:49:35
tomcat中server.xml里配置首页文件名 代码是什么啊 忘记了

就是配置 首页像 index.html *.htm *.jsp 想IIS里的设置默认首页的

是在web.xml中
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

server.xml中看嘛 最后几行里有,那个是 index.jsp 啊什么的 一般有3项,英语稍微一般的就可以看懂了。

最好也在JSP项目里也修改

web.xml里配置的吧,没听说把首页配在server.xml里的

<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>