点击退出后还能直接进入后台

来源:4-6 退出登录功能实现

慕莱坞4511117

2017-05-25

  LoginController.class.php文件中
    public function index(){
		if(session('adminUser')==null){
			redirect('/index.php?m=admin&c=index');
		}
    	return $this->display();
    }
	public function Loginout(){
		session('adminUser',NULL) ;
		redirect('/index.php?m=admin&c=login');
	}
前端:
<a href="/index.php?m=admin&c=login&a=loginout"><i class="fa fa-fw fa-power-off"></i> 退出</a>

点击退出后,输入后台网址:http://localhost/index.php?m=admin&c=index,能直接进入后台

麻烦老师帮忙指导下,代码改成什么样

写回答

1回答

singwa

2017-05-25

您好,退出后不能进入后台那他是到了哪个页面?麻烦截图我看看

0
1
慕莱坞4511117
老师您好,可能我没表达清楚,我现在的情况是这样的:我用admin登陆进入后台后,点击退出按钮,能退出系统,而且回到了登陆页,但是这时候我再在浏览器中输入后台首页地址(http://localhost/index.php?m=admin&c=index),按照逻辑,应该回到登陆页,让用户登陆,可是我却能直接进入到后台首页。
2017-05-26
共1条回复

前端到后台ThinkPHP开发整站

用PHP+MySQL+Ajax开完新闻资讯整站,实现“小全栈”的梦想

3360 学习 · 1014 问题

查看课程