Zend Framework 多语言自定义路由
这是我当前的路线
routes.index.route = "/:lang/:controller/:action*"
routes.index.defaults.controller = index
routes.index.defaults.action = index
routes.index.defaults.lang = en
,但它不起作用,我需要类似 /:lang/:controller/:action
有人可以帮助我吗?谢谢!
this is my current route
routes.index.route = "/:lang/:controller/:action*"
routes.index.defaults.controller = index
routes.index.defaults.action = index
routes.index.defaults.lang = en
But it doesn't work, I need something like /:lang/:controller/:action
can someone help me?Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的语法看起来有点稀疏尝试:
您还需要定义模块,即使它只是“默认”(不读取模块)模块。
your syntax looks a little sparse try:
you also need to define the module even if it just the 'default' (read no module) module.