Set the default controller
Add configuration in /protected/config/
Copy the codeThe code is as follows:
<?php
return array(
'name'=>'Auto',
'defaultController'=>'auto',
The default controller is configured as
Set default action
Set in
Copy the codeThe code is as follows:
class AutoController extends CController
{
public $defaultAction = 'test';
public function actionTest()
{
...
}
...
At this time, accessing xxxx/ will be transferred to xxxx/?r=auto/test by default