Search code examples
phpyiiyii2configdefault

How to set the default controller in yii2


I have UserControler and I run it in virtual server http://basic.com/index.php?r=user/index. How can I set up UserController and action index to be the default when I go to http://basic.com


Solution

  • Did you try in your config:

    'defaultRoute' => 'user/index'
    

    Default Controller