我正在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
时,我可以去那里答案 0 :(得分:2)
在config
文件的routes.php
文件夹中: -
更改此
$routes->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);
要
$routes->connect('/', ['controller' => 'Pages', 'action' => 'home']);