亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

yii框架配置默認controller和action示例

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

設(shè)置默認controller

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

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

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

上述配置了默認的controller為AutoController.php

設(shè)置默認action

在AutoController.php中設(shè)置

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

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

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

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

相關(guān)文章

最新評論