CakePHP:更改默认视图而不是home.ctp

neo*_*bie 7 cakephp

作为标题,如何在不在apps/views/pages /文件夹中放置home.ctp的情况下更改默认视图?

比方说,我希望默认主页显示/views/other/index.ctp.

我应该在哪里更改编码?它涉及哪些文件?谢谢.

dho*_*tet 18

创建一个OtherController:

// app/controllers/other_controller.php
class OtherController extends AppController {
    public function index() {
        // do something
    }
}
Run Code Online (Sandbox Code Playgroud)

并将根路由app/config/routes.php指向它:

Router::connect('/', array('controller' => 'other', 'action' => 'index'));
Run Code Online (Sandbox Code Playgroud)