如果会话仍未销毁,则从索引页重定向用户

时间:2013-01-12 13:59:03

标签: php

如果用户打开新标签然后输入我的页面的index.php到他的用户页面,如何重定向用户?我将在index.php中添加什么来执行此操作?我是PHP的新手。

2 个答案:

答案 0 :(得分:6)

这样的事情:

session_start();
if (isset($_SESSION['user'])) {
    header('Location: user_page.php');
}

请确保您在index.php中没有任何html代码或间距

答案 1 :(得分:0)

我觉得这个问题在stackoverflow上得到了很多回答。

header("Location:filename")
exit();