Я изучаю, как работают модули в Yii2, и теперь я создал следующий модуль: gdpr
.Я могу получить доступ к следующему маршруту: /index.php?r=gdpr/user/index
.Однако я хочу получить доступ к маршруту следующим образом: /gdpr/user/index
.Как мне этого добиться?
config.php:
<?php
return [
'components' => [
'urlManager' => [
'class' => 'yii\web\UrlManager',
'enablePrettyUrl' => true,
'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
['class' => 'yii\rest\UrlRule', 'controller' => 'modules\gdpr\default'],
['class' => 'yii\rest\UrlRule', 'controller' => 'modules\gdpr\user'],
],
],
],
'params' => [
// list of parameters
],
];