How to set the default controller in yii2

Jackson Tong picture Jackson Tong · Sep 4, 2014 · Viewed 54.4k times · Source

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

Answer

Aivar picture Aivar · Sep 12, 2014

Did you try in your config:

'defaultRoute' => 'user/index'

Default Controller