php - 重定向ajax请求

时间:2014-05-22 08:49:03

标签: php wordpress http-redirect

如何在php / wordpress中重定向ajax请求。

我尝试header("Location: " . "http://redirect.url");但它不起作用,响应状态为301 Moved Permanently,请求失败。

1 个答案:

答案 0 :(得分:1)

你无法通过ajax请求从php重定向。而不是你需要在你的JavaScript中进行。

例如,如果这是你的ajax,那么你的请求成功后从ajax本身重定向

$.ajax({
    type    : 'post',
    url     : 'http://localhost/redirect.php',
    success : function(data){
       window.location = "http://your/url";
    }
});