使用" 403 Forbidden"获取网页目录块

时间:2017-08-04 10:12:35

标签: javascript html vb.net vb.net-2010

我试图查看网络目录。它仅在我输入" folder / images / cat.png"时才有效,如果我输入" folder / images /"它给了我:

  

403 Forbidden nginx / 1.11.8

如何下​​载或查看文件夹目录中的所有文件,而无需直接转到目录网站链接末尾的图像? (例如" folder / images / cat.png")

1 个答案:

答案 0 :(得分:0)

将此添加到您的nginx配置文件中:

location /path-to-folder {
    autoindex on;
}

确保您要查看的文件夹中没有索引文件,例如的index.html / PHP的。

您需要启用HttpAutoindexModule。

您也可以在Apache Web服务器上执行此操作,方法是将.htaccess文件放在要查看的目录中:

Options +Indexes