Ajax url通过301移动并请求抛出错误

时间:2015-11-04 08:28:45

标签: ajax

我使用这个脚本,通过ajax请求获取一些数据:

jQuery(document).ready(function() {
    $urlpre = document.location.protocol;
    $.ajax({
        url: $urlpre+'//domain.tld/file.php',
        error: function (thrownError) {
            pushNotify('Could not connect to update server!', 'danger', '5');
        },
        success: function (data) {
            ...
        }
    });
});

现在,网址从domain.tld/file.php更改为sub.domain.tld/file.php。 我设置了一个301重定向,在浏览器中这很好,但是ajax请求会抛出错误。 我试图谷歌这个问题,有些问题与http:和https:但我不认为这是我的情况。

0 个答案:

没有答案