来源:自学PHP网 时间:2015-08-04 12:08 作者: 阅读:次
[导读] 这篇文章主要介绍了在Nginx浏览器中打开目录浏览功能,Nginx的目录浏览功能默认情况下被关闭需要手动打开,需要的朋友可以参考下...
在nginx中不像apache默认是打开目录浏览功能的,在nignx中目录浏览功能默认是关闭了,下面我来介绍在nginx中实现目录浏览功能的配置方法。 打开nginx.conf文件,在location server 或 http段中加入 autoindex on; 另外两个参数最好也加上去: autoindex_exact_size off; 默认为on,显示出文件的确切大小,单位是bytes。 autoindex_localtime on; 默认为off,显示的文件时间为GMT时间。 location /{ root /var/www/html; autoindex on; } 这段代码的意思就是把 /var/www/html目录作为根目录来直接列出来。
server { listen 80; charset utf-8; server_name localhost; root /www/web/default; location / { autoindex on; autoindex_exact_size off; autoindex_localtime on; } } |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com