Codeigniter 的路线问题!
我正在尝试执行此路线技巧:
$route['cp/roles/:num'] = "cp/roles/index/:num";
但它不起作用:( 请帮我!!
先进的感谢。
I am trying to do this route trick:
$route['cp/roles/:num'] = "cp/roles/index/:num";
but it doesn't work :(
please help me!!
advanced thanks .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 URI 路由 的文档:
因此,对于您的特定实例,您将执行以下操作:
According to the documentation on URI Routing:
So, for your particular instance, you would do the following:
您可以尝试
然后不要在您使用的函数中传递变量
或与段相对应的数字。
You could try
and then instead of passing a variable in your function you use
or the number that correspond to the segment.