How to set default controller in Yii

后端 未结 3 1400
无人及你
无人及你 2021-02-20 15:36

Is there a way to specify a default controller in Yii? Instead of using the SiteController? Thank you in advance.

3条回答
  •  心在旅途
    2021-02-20 16:05

    To set your default controller as your homepage's controller on Yii PHP-Framework. You must modify the core defaults controller (site/index) on your /protected/config/main.php

    return array(
        'name' => 'Web Application',
        'defaultController' => 'home ', 
    
    );
    

提交回复
热议问题