禁止文件夹访问错误

时间:2018-06-11 17:11:23

标签: folder-access

当我调用ajax获取javascript文件中所有图像的列表时,出现此错误。 禁止您无权访问此服务器上的/nyetnet.com/test/nyetnet.com/test/images/。此外,尝试使用ErrorDocument处理请求时遇到403 Forbidden错误。

我的代码正在关注。

...
var getMediaList = function() {
    // ----------------------- Get ImageList -----------------------------
    var dir = "./images/";
    var fileextension = ".png";
    $.ajax({
        //This will retrieve the contents of the folder if the folder is configured as 'browsable'
        url: dir,
        success: function (data) {
            //List all .png file names in the page
            $(data).find("a:contains(" + fileextension + ")").each(function () {
                var filename = this.href.replace(window.location.host, "").replace("http://", "");
                $("body").append("<img src='" + dir + filename + "'>");
            });
        }
    });
    // --------------------------------------------------------------------
};

我如何解决它?

0 个答案:

没有答案