如何配置tomcat虚拟目录和显示目录的文件

配置虚拟目录
1. 在webapps下建立一个目录alantop,目录下建立一个web-inf目录
2. 将webapps\root\web-inf目录下的web.xml拷贝到web-inf目录下
web.xml下面的内容可以修改
  Welcome to alantop
 
     Welcome to alantop
 
3.打开conf/server.xml
增加这一行

       
               prefix="localhost_access_log" suffix=".txt"
               pattern="%h %l %u %t "%r" %s %b" />
       
       
     
4. 如果要显示目录下所有文件列表
打开conf/web.xml
把false改为true
       
            listings
            true
       





你可能感兴趣的:(如何配置tomcat虚拟目录和显示目录的文件)