我正在用 PHP 创建一个登录脚本,我只是想知道重定向未登录的用户是否安全?我正在检查会话,如果用户未登录,我想使用类似的东西:
session_start();
//check session
if (user is not logged in)
header ("Location: login.php");
//content of confidential file
用户能否以某种方式阻止重定向并查看内容,或者无论用户做什么,脚本都会停止并重定向?我想在我拥有的每个机密页面上执行此检查。
谢谢大家,我将使用:
session_start();
//check if user is logged in
if(!check)
{
header ("Location: login.php");
die("Please <a href=\"login.php\">log in</a>");
}
//print all the html stuff only logged it users should see
感谢所有的帮助!缺口