我有这样的网址
http://localhost/yii2/category/my-custom-string-parameter
我需要获取文字 my-custom-string-parameter
我设置了这样的规则
'urlManager' => [
'class' => 'yii\web\UrlManager',
'showScriptName' => false,
'enablePrettyUrl' => true,
'rules' => array(
'<controller:\w+>/<id:\d+>' => '<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
'category/<url:>' => 'category/view',
),
],
这总是给我404错误。 我该怎么办?
答案 0 :(得分:6)
将'category/<url:>' => 'category/view',,
替换为'category/<id:\w+>' => 'category/view'
路由到视图需要一个id并使用字符串使用w +而不是url: