我使用这个脚本,通过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:但我不认为这是我的情况。