設置默認controller
在/protected/config/main.php添加配置
復制代碼 代碼如下:
<?php
return array(
'name'=>'Auto',
'defaultController'=>'auto',
上述配置了默認的controller為AutoController.php
設置默認action
在AutoController.php中設置
復制代碼 代碼如下:
class AutoController extends CController
{
public $defaultAction = 'test';
public function actionTest()
{
...
}
...
此時訪問xxxx/index.php會默認轉到xxxx/index.php?r=auto/test