阿泉的博客

记录生活点滴

网页开启目录浏览 nginx开启目录浏览 宝塔开启目录浏览

网页开启目录浏览  nginx开启目录浏览   宝塔开启目录浏览  

偶尔需要一个专门提供下载的页面,专为这个站点开启目录浏览功能。

宝塔面板的:在站点设置里面的配置文件先注释掉

#index index.php index.html index.htm default.php default.htm default.html;


然后再

access_log  /www/wwwlogs/127.0.0.1_98.log;

    error_log  /www/wwwlogs/127.0.0.1_98.error.log;

前面加上

     location / {

        root /www/wwwroot/ruanjian/软件;

        autoindex on; 打开目录浏览功能

        autoindex_exact_size off; 显示文件具体大小,off为大约大小

        autoindex_localtime on; 显示当地时间

        charset utf-8; #让页面支持中文

      }

最后加完是这样:

     location / {

        root /www/wwwroot/ruanjian/软件;

        autoindex on;

        autoindex_exact_size off;

        autoindex_localtime on;

        charset utf-8;

      }

    access_log  /www/wwwlogs/127.0.0.1_98.log;

    error_log  /www/wwwlogs/127.0.0.1_98.error.log;

}


Powered By Z-BlogPHP 1.7.4