标题(“位置:/”); 重定向本地主机的作品,而不是远程服务器上(header(“Locatio

2019-06-25 13:20发布

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

重定向完全在本地主机上的作品,而不是远程服务器上。 可这一切都更好地使用$_SERVER ? 如果我在同一个目录与文件重定向文件选择这个重定向甚至不工作。 希望大家帮我:)

Answer 1:

从手册 :

HTTP / 1.1需要一个绝对URI作为参数传递给»位置:包括方案,主机名和绝对路径,但有些客户接受相对URI。 你通常可以使用$_SERVER['HTTP_HOST'] $_SERVER['PHP_SELF']dirname()从一个相对做的绝对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;
?>


文章来源: header(“Location:/”); redirect works on localhost, but not on remote server