我是cakephp3的新手。任何人都可以告诉我我们如何在蛋糕php 3中使用重定向。我的概念是如果用户登录然后它重定向到Backend文件夹中的仪表板控制器。
答案 0 :(得分:0)
You're most likely looking for the 'prefix' attribute Example:
return $this->redirect([
'prefix'=>'backend'
'controller' => 'Dashboards',
'action' => 'index'
]);
https://book.cakephp.org/3.0/en/controllers.html#redirecting-to-other-pages