Čamo
Čamo

Reputation: 4192

Yii why this route does not match

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'
        ],
    ],

Upvotes: 0

Views: 50

Answers (1)

rob006
rob006

Reputation: 22174

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'
    ],
],

Upvotes: 2

Related Questions