我是靠谱客的博主 动听小猫咪,最近开发中收集的这篇文章主要介绍如何设置Tomcat目录浏览,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

第一步:

 

找到安装Tomcat的目录$Apache Software Foundation/Tomcat 5.5/conf/web.xml,然后打开找到如下代码

 

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

 

把其中如下代码删除

 

        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file> 

 

第二步:

 

  找到<init-param>
            <param-name>listings</param-name>
            <param-value>false</param-value>
        </init-param>

  把<param-value>false</param-value>改为<param-value>true</param-value>

 

重启Tomcat服务器即可

 

 

最后

以上就是动听小猫咪为你收集整理的如何设置Tomcat目录浏览的全部内容,希望文章能够帮你解决如何设置Tomcat目录浏览所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部