gpt4 book ai didi

codeigniter - 在 Pyrocms 中管理登录重定向

转载 作者:行者123 更新时间:2023-12-01 01:19:02 26 4
gpt4 key购买 nike

我需要以这样的方式管理登录,它应该在成功登录后将控件重定向到调用pycrocms中的登录方法的页面。

默认情况下,它将控制权返回到主页。例如,我想转到图库页面,但它需要用户登录,因此它将控制重定向到登录页面,现在我想在用户成功登录后将控制重定向回图库页面。

最佳答案

最后,我提出了正确的解决方案,它对我来说是正确的。

每当用户尝试查看需要用户登录的图库页面(受限页面)时,我们只需在 Controller 方法中的 $redirect_to 中分配成功登录后要重定向的 URL:

$this->session->set_userdata('redirect_to',$redirect_to);

然后它会自动将控件重定向到所需的页面。因为在用户 Controller 中,登录功能是这样开发的:
$redirect_to = $this->input->post('redirect_to') ? $this->input->post('redirect_to') : $this->session->userdata('redirect_to');

希望这会在某个时候帮助你

关于codeigniter - 在 Pyrocms 中管理登录重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10328141/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com