什么是CakePHP 3主页?我无法重定向到那个

时间:2016-06-23 12:43:38

标签: php cakephp url-routing cakephp-3.x

我正在CakePHP 3开发一个网页,我遇到了问题。

我有"src/Template/Pages/home.ctp"主页的视图,我在PagesController.php

中创建了这个功能
public function home() 
{ //code...
}

如果我转到网址,我可以进入此页面:http://example.com/Pages/home但如果我转到http://example.com/我就不会转到此页面。如果我也不去http://example.com/pages/home

我的错误是什么?我没有看到它!我想编辑“真实”主页,当我转到http://example.com

时,我可以去那里

1 个答案:

答案 0 :(得分:2)

config文件的routes.php文件夹中: -

更改此

$routes->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);

$routes->connect('/', ['controller' => 'Pages', 'action' => 'home']);