gpt4 book ai didi

php - Yii 2 中的 url 管理

转载 作者:可可西里 更新时间:2023-10-31 23:11:39 25 4
gpt4 key购买 nike

我有这个网址

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

我错过了什么?

最佳答案

不幸的是这个特性没有迁移到 Yii2,你仍然可以手动定义这样的规则

'books/view/queryString/<queryString:\w+>' => 'books/view',

Link on github with this issue

Because of many client API and Oauth servers don't work without encode

Sam Dark answer

关于php - Yii 2 中的 url 管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22963353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com