繁体   English   中英

页面无法正确重定向3

[英]Page not redirecting properly 3

我有以下代码将用户重定向到他们的正确页面。 但是,浏览器出现错误:

错误:

页面未正确重定向

编码:

<?php
/**
 * User has already logged in, so display relevant links, including
 * a link to the admin center if the user is an administrator.
 */

    if (($session->logged_in) && ($session->isAgent())) {

        header("Location: gallery_Agent.php");

} elseif (($session->logged_in) && ($session->isMaster())) {

        header("Location: gallery_Master.php");

} elseif (($session->logged_in) && ($session->isAdmin())) {     

        header("Location: gallery_Admin.php");

} 

else {  ...

我该如何解决?

约瑟夫

此错误通常表示无限重定向循环。 设置Location标头后,请始终使用exit() ,并确保在重定向到的页面中没有包含此重定向逻辑。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM