в Url manager
'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => false,
'showScriptName' => false,
'rules' => [
'POST <controller:\w+>s' => '<controller>/create',
'<controller:\w+>s' => '<controller>/index',
'PUT <controller:\w+>/<id:\d+>' => '<controller>/update',
'DELETE <controller:\w+>/<id:\d+>' => '<controller>/delete',
'<controller:\w+>/<id:\d+>' => '<controller>/view'
]
],
DOMEN/index.php/products/1 работает
DOMEN/index.php/products/cat1 дает ошибку Unable to resolve the request: products/cat1
Как передать параметр не цифру? В чем особенность?