如何使用Nginx列出目录及其文件?

时间:2014-03-20 07:04:12

标签: php jquery mysql nginx phalcon

我想列出目录及其文件,如

/Index
      /Directories 1
       1) File1.php
          File2.php
          File3.php
      /Directories 2
       1) File1.php
          File2.php
          File3.php

等等。

1 个答案:

答案 0 :(得分:3)

在服务器模块中添加以下内容

location / { 
    autoindex on; 
}

,并删除该行或评论

#index index.html index.php;

最后,重启你的Nginx。

service nginx reload