我正在使用 acl,我想根据用户来自哪个组来重定向用户
在我的 appcaontroller 我有这个
public function beforeFilter() {
//Configure AuthComponent
//$this->Auth->allow('display');
$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
$this->Auth->logoutRedirect = array('controller' => 'users', 'action' => 'login');
$this->Auth->loginRedirect = array('controller' => 'posts', 'action' => 'add');
}
如果用户来自 group_id 1,我应该怎么做,他/她应该被重定向到不同于 group_id = 4 等的地方
谢谢