0
我已經在UserController中編寫了此代碼,但無法獲得結果。每當我在同一瀏覽器的兩個選項卡中打開管理面板,並且如果從一個選項卡註銷,當點擊任何菜單時,從其他標籤重定向到登錄頁面。我正在使用cakephp,想知道如何過期管理員會話
function beforeFilter()
{
if(($this->request->prefix)=='admin')
$this->Auth->allow();
$chk = $this->Session->check('Admin');
$this->disableCache();
if(@$this->Session->read('Admin') && ($this->request->action == 'admin_login'))
{
$this->redirect(array('action' => 'dashboard','admin' => true));
}
}