设置默认controller
在/protected/config/main.PHP添加配置
代码如下:
上述配置了默认的controller为AutoController.PHP
设置默认action
在AutoController.PHP中设置
代码如下:
class AutoController extends CController
{
public $defaultAction = 'test';
{
public $defaultAction = 'test';
public function actionTest()
{
...
}
...