08-12
08
tomcat默认页设置
作者:Java伴侣 日期:2008-12-08
很多人肯定用tomcat的时候会遇到类似的问题。。。
配置了
Java代码
<welcome-file-list>
<welcome-file>index.do</welcome-file>
</welcome-file-list>
但没有用,还是会404错误....挺烦人的,只能弄一个index.html重定向到index.do
但无疑是网站首页访问效率降低了,等于request了2个请求。。
无意看了一下tomcat注释
When a request URI refers to a directory, the default servlet looks for a "welcome file" within that directory and, if present, to the corresponding resource URI for display
也就是说,必须web-app目录下有index.do这个文件。。。。。。于是就加个.do后缀的空文件咯,居然成功了。。。
配置了
Java代码
复制内容到剪贴板 程序代码
<welcome-file-list>
<welcome-file>index.do</welcome-file>
</welcome-file-list>
但没有用,还是会404错误....挺烦人的,只能弄一个index.html重定向到index.do
但无疑是网站首页访问效率降低了,等于request了2个请求。。
无意看了一下tomcat注释
When a request URI refers to a directory, the default servlet looks for a "welcome file" within that directory and, if present, to the corresponding resource URI for display
也就是说,必须web-app目录下有index.do这个文件。。。。。。于是就加个.do后缀的空文件咯,居然成功了。。。
评论: 0 | 引用: 0 | 查看次数: 485
发表评论