登录后重定向到上一页
当用户登录网站时,通常希望将他们重定向回他们所访问的页面之前都在浏览。这确保了无缝的用户体验,并消除了他们手动返回的需要。
实现此功能的一种方法是在将用户重定向到登录页面时通过 GET 变量传递用户的当前位置:
<code class="php">header("Location:login.php?location=" . urlencode($_SERVER['REQUEST_URI']));</code>
这会将用户发送到一个登录页面,其中包含一个隐藏的输入字段,其中包含上一页的 URL:
<code class="php">echo '<input type="hidden" name="location" value="'; if(isset($_GET['location'])) { echo htmlspecialchars($_GET['location']); } echo '" />';</code>
在处理以下内容的 login-check.php 脚本中登录请求,如果登录成功并且设置了location参数,用户会被重定向到存储的URL:
<code class="php">if(isset($_POST['location'])) { $redirect = $_POST['location']; } // ... if(isset($_SESSION['id_login'])) { // if login is successful and there is a redirect address, send the user directly there if($redirect) { header("Location:". $redirect); } }</code>
但是,对$_GET['location']参数进行验证至关重要防止用户被重定向到恶意网站。此外,在将 URL 作为 GET 参数传递时,请始终使用 urlencode,以正确处理特殊 URL 字符。
以上是如何在登录后将用户重定向回上一页?的详细内容。更多信息请关注PHP中文网其他相关文章!