nginx一些常用配置开启目录浏览
1.列出目录
location / { root /data/www/file //指定实际目录绝对路径; autoindex on; //开启目录浏览功能; autoindex_exact_size off; //关闭详细文件大小统计,让文件大小显示MB,GB单位,默认为b; autoindex_localtime on; //开启以服务器本地时区显示文件修改日期! }
也可以配置在sever里
对比下apache的
< Directory ”/data/www/file” > Options Indexes //开启目录列表索引模式 Order allow,deny IndexOptions NameWidth = 25 Charset = UTF -8 //设定文件名显示长度,文字字符编码 Allow from all </ Directory >

浙公网安备 33010602011771号