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

前端之家收集整理的这篇文章主要介绍了CakePHP:更改默认视图而不是home.ctp前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
作为标题,如何在不在apps / views / pages /文件夹中放置home.ctp的情况下更改默认视图?

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

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

创建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'));
原文链接:https://www.f2er.com/php/133251.html

猜你在找的PHP相关文章