我正在使用cake php 2.4我的问题有时是在会话空闲之后,或者在其他选项卡中注销ajax请求不起作用,因为用户已经注销了。 我的问题是我如何验证将用户重定向到登录页面。 我用来过滤请求的函数在我的userscontroller类中使用
//class UsersController
public function beforefilter(){
parent::beforeFilter();
// Allow users to logout.
$this->Auth->allow('logout');
}
谢谢
答案 0 :(得分:0)
if (!$this->Session->read('Auth.User')) {
// redirect here
}