Nginx Autoindex问题

时间:2015-08-12 17:07:13

标签: php wordpress nginx

我试图在我的某个目录(domain.tld / mng)上启用目录列表。首先,我将其添加到我的.conf文件中:

location = /mng {
    autoindex on;
}

它没有用,所以我必须这样做:

location = /mng/ {
    autoindex on;
}

它在domain.tld / mng /上工作但是当我尝试访问像domain.tld / mng / 01 /我的子目录时,我得到一个403 Forbidden错误代码。所有子目录都有755个权限,并由Web服务器拥有(在我的例子中,nginx:nginx)。我想知道可能出现什么问题?

BTW,我正在使用wordpress网站。

1 个答案:

答案 0 :(得分:0)

由匿名用户发布,我只需将规则更改为:

location ~ /mng/.* {
  autoindex on;
}

它适用于所有子目录。谢谢。