在开发阶段,有时候我们需要显示当前目录下所有文件,所以需要这个功能
首先我们打开nginx的配置文件,
在需要设置目录浏览的站点配置下面加上
1 2 3 |
autoindex on; autoindex_exact_size off; autoindex_localtime on; |
最终结果如下,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
server { listen 80; server_name hd.cn www.hd.cn; root "C:/www/m_xdq"; autoindex on; autoindex_exact_size off; autoindex_localtime on; location / { index index.html index.htm index.php; #autoindex on; } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } } |
重启 nginx 服务
这样我们打开没有主入口文件的目录,就可以看到文件列表了~