Yii2 advanced - включить симпатичный URL в модуле - PullRequest
0 голосов
/ 15 февраля 2019

Я изучаю, как работают модули в 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
    ],
];

1 Ответ

0 голосов
/ 15 февраля 2019

Необходимо настроить контроллеры следующим образом:

'components' => [
    'urlManager' => [
        'class' => 'yii\web\UrlManager',
        'enablePrettyUrl' => true,
        'enableStrictParsing' => true,
        'showScriptName' => false,
        'rules' => [
            [
                'class' => 'yii\rest\UrlRule', 
                'controller' => ['gdpr/default', 'gdpr/user'],
            ],
        ],
    ],
],

См. https://www.yiiframework.com/doc/api/2.0/yii-rest-urlrule#$controller-detail

...