欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

yii框架配置默認(rèn)controller和action示例

 更新時間:2014年04月30日 11:42:03   作者:  
這篇文章主要介紹了yii框架配置默認(rèn)controller和action示例,需要的朋友可以參考下

設(shè)置默認(rèn)controller

在/protected/config/main.php添加配置

復(fù)制代碼 代碼如下:

<?php
return array(
 'name'=>'Auto',
'defaultController'=>'auto',

上述配置了默認(rèn)的controller為AutoController.php

設(shè)置默認(rèn)action

在AutoController.php中設(shè)置

復(fù)制代碼 代碼如下:

class AutoController extends CController
{
    public $defaultAction = 'test';

    public function actionTest()
    {
        ...
    }
    ...

此時訪問xxxx/index.php會默認(rèn)轉(zhuǎn)到xxxx/index.php?r=auto/test

相關(guān)文章

最新評論