yii框架如何配置默认controller与action

发布时间:2020-06-04编辑:脚本学堂
本文介绍了yii框架中配置默认controller和action的方法,分享一个设置默认controller和action的例子,有研究yii的朋友可以参考下,个人感觉还不错的。

在yii框架中,设置默认controller
在/protected/config/main.php添加配置
 

复制代码 代码示例:
<?php
return array(
 'name'=>'Auto',
'defaultController'=>'auto',

上述配置了默认的controller为AutoController.php

在yii框架中,设置默认action
在AutoController.php中设置
 

复制代码 代码示例:
class AutoController extends CController
{
    public $defaultAction = 'test';
    public function actionTest()
    {
        ...
    }
    ...
 

此时访问xxxx/index.php,会默认转到xxxx/index.php?r=auto/test,表示设置成功。