我有这个网址
http://example.com/index.php/controller_name/action_name?queryString=123
这个 url 工作正常,但是当我尝试像在旧版本的 Yii 中一样使用 queryString 时
http://example.com/index.php/controller_name/action_name/queryString/123
我收到“无法解决请求”错误。
我已经在我的配置文件中启用了 prettyurl 并且以下 url 正在工作
http://example.com/index.php/controller_name/action_name.
我的配置看起来像:
'urlManager' => [
'class' => 'yii\web\UrlManager',
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
'<controller:\w+>/<id:\d+>' => '<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
'module/<module:\w+>/<controller:\w+>/<action:\w+>' => '<module>/<controller>/<action>',
],
],
我错过了什么?