SoFunction
Updated on 2025-04-04

Yii framework configuration default controller and action example

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