Saturday, March 12, 2022

[FIXED] Yii why this route does not match

Issue

I want to create simple routes for article routes but unsuccessfully. I have first route which should match regular expression and second like a slug route. Second one works well but the first one does not match nothing. What is wrong with this route?

    'urlManager' => [
        'enablePrettyUrl' => true,
        'showScriptName' => false,
        'rules' => [
            'article/<action: (index|view|delete|create|update)>' => 'article/<action>',
            'article/<slug>' => 'article/view'
        ],
    ],

Solution

There should be no space after action::

'urlManager' => [
    'enablePrettyUrl' => true,
    'showScriptName' => false,
    'rules' => [
        'article/<action:(index|view|delete|create|update)>' => 'article/<action>',
        'article/<slug>' => 'article/view'
    ],
],


Answered By - rob006

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.