从PHP重定向标头位置删除尾随正斜杠

时间:2015-10-19 23:53:35

标签: php redirect url-redirection

我有以下脚本:

function redirect_to($location) {
    header("Status: 301");
    header("Location: $location");
    exit;
}

if($_GET['check'] === '1') {
    redirect_to('http://www.domain.com?aaa=bbb');
}

出于某种原因,它会在域名的尾端添加正斜杠。我也尝试回应一个JavaScript windows.location,同样的问题。

http://www.domain.com/?aaa=bbb

我该如何防止这种情况?

0 个答案:

没有答案