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

时间:2011-02-28 05:06:11

标签: cakephp

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

让我们说,我希望默认主页显示/views/other/index.ctp。

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

1 个答案:

答案 0 :(得分:18)

创建OtherController

// app/controllers/other_controller.php
class OtherController extends AppController {
    public function index() {
        // do something
    }
}

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

Router::connect('/', array('controller' => 'other', 'action' => 'index'));