How to set yii2, url does not add the module name, directly routed to the default module? Thank you

there are multiple modules under my frontend. How to set yii2. Url will be routed directly to the default module without adding the module name? Thank you

Mar.31,2021


enter config/web.php, and add the following. Upload is the controller / index is the default module
'defaultRoute'= >' upload/index',


you can try different modules using different entry files, and then different entry files introduce different web.php configuration files


'defaultRoute'= >' module name',

Menu