3
if (condition)
{
#lol. Some code here
}
else
{       
header("Location:/");//i'm trying to redirect to the root
}

重定向在本地主机上完美运行,但在远程服务器上却不行。使用起来会更好$_SERVER吗?即使我选择与重定向文件位于同一目录中的文件,此重定向也不起作用。希望你能帮助我:)

4

1 回答 1

4

手册

HTTP/1.1 需要绝对 URI 作为 » Location 的参数:包括方案、主机名和绝对路径,但有些客户端接受相对 URI。您通常可以使用$_SERVER['HTTP_HOST'],$_SERVER['PHP_SELF']dirname()自己从相对的 URI 中创建一个绝对 URI:

<?php
/* Redirect to a different page in the current directory that was requested */
$host  = $_SERVER['HTTP_HOST'];
$uri   = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra = 'mypage.php';
header("Location: http://$host$uri/$extra");
exit;
?>
于 2012-06-17T14:36:04.677 回答