CakePHP admin section routing and redirecting

后端 未结 4 1734
醉梦人生
醉梦人生 2021-02-20 09:49

I\'m struggling with the concept of creating an admin section in CakePHP-project. (version 2.3.5)

I have uncommented the line in Config/core.php:

Configu         


        
4条回答
  •  悲&欢浪女
    2021-02-20 10:32

    I guess you could set a loginAction in AppController and then inside this action you could do:

    $this->redirect(array('controller'=>'someController','action'=>'someAction','admin'=>true));
    

提交回复
热议问题