Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果他打开一个新标签然后将我的页面的 index.php 输入到他的用户页面,如何重定向用户?我将在我的 index.php 中放入什么来执行此操作?我是 PHP 新手。
像这样的东西:
session_start(); if (isset($_SESSION['user'])) { header('Location: user_page.php'); }
确保您的 index.php 中没有任何 html 代码或高于此的间距
我觉得这个问题在stackoverflow上已经得到了很多回答。
header("Location:filename") exit();