header("Location: …" );
似乎无法正常工作:
<?php
session_start();
if (isset($_SESSION['user'])){
?>
<html>
<head>
<title>
Admin Panel
</title>
</head>
<body>
</body
</html>
<?php
} else {
header("Location: http://echo2.site40.net/cms/admin/login.php" );
}
?>
答案 0 :(得分:0)
如果我完全复制粘贴代码,似乎工作正常......
在<?php