如何设置路由规则,能同时支持最后面的斜杠都能访问 [ 2.0 版本 ]
请问路由规则,如何设置让这2种链接:http://192.168.103.136/cer/2
和 http://192.168.103.136/cer/2/
都能访问(一个带斜杠,一个不带)
目前是这样设置的。'cer/<id:\d+>' => 'cer/info'
目前这个规则只支持不带斜杠的链接
共 3 个回答
-
控制器 ProductController.php
http://suizhouw.cn/product
http://suizhouw.cn/product/
没问题
路由
`'<controller:\w+>/<id:\d+>'=>'<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>', '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
`
这样写 没问题
如果这样写
`'pro'=>'product/index',`
好像就有问题了
thinkwind
注册时间:2017-04-14
最后登录:2018-03-13
在线时长:6小时14分
最后登录:2018-03-13
在线时长:6小时14分
- 粉丝0
- 金钱5
- 威望0
- 积分65