php header("location: test.php")
不工作。但是java脚本重定向工作。
我试过header()
不重定向?
header("location: test.php");
但我尝试使用java脚本它的工作
window.location ="http://www.test.com/test.php"
问题是什么。请给出一些解决方案
在调用标头之前没有回显(输出命令)
没有错误/警告消息
我的确切代码:
if($contlogin >0 && $LoginID!="")
{
$_SESSION['LoginID'] = $LoginID;
if($_SESSION['currentUrl']) {
header("location: http://".$_SESSION['currentUrl']);
}
else {
if($LoginID==1) {
header("location:admin/index.php");
}
else {
header("location:dashboard.php");
}
}
}
else {
header("location:index.php?err=1");
}