我是Cakephp的新手。我正在使用最新版本的cakephp。我已经创建了一个控制器"PostsController"
,并希望使其成为主页。但是,当我将其从routes.php
设置为主页时,什么也没有发生。我正在使用-cakephp.example.com
之类的子域。这是我的routes.php代码
$routes->connect('/', ['controller' => 'Posts', 'action' => 'index', 'home']);
有人可以帮助我为什么它不起作用吗? htaccess
文件中有什么需要做的吗?
答案 0 :(得分:0)
路由器:(在路由器类中仅一次)
$routes->connect('/', ['controller' => 'Posts', 'action' => 'index']);
src / Controllers / PostsController:
public function index()
{
// your code here
}
src / Template / Posts / index.ctp
<h1>Hello world</h1>