0

我想知道当 index.html 不在根目录中时,如何让 tomcat 显示目录中的文件?目前它给了我一个错误页面。

description The requested resource 
(/Tutorials/ios/exercise-files/Ex_Files_iOS4_Web_Apps/Ch02/) is not available.
4

1 回答 1

3

打开 Tomcat 自己的/conf/web.xml文件(如果你使用 Eclipse,则打开Servers<servlet>项目中的文件),找到 的条目DefaultServlet并将listings初始化参数从更改falsetrue

<init-param>
    <param-name>listings</param-name>
    <param-value>true</param-value>
</init-param>

也可以看看:

于 2012-06-06T03:48:30.167 回答