蛋糕php3中的文件夹重定向

时间:2017-06-15 04:17:41

标签: cakephp

我是cakephp3的新手。任何人都可以告诉我我们如何在蛋糕php 3中使用重定向。我的概念是如果用户登录然后它重定向到Backend文件夹中的仪表板控制器。

1 个答案:

答案 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