CakePHP 高级路由
如何创建这样的 URL(默认为英语):
对于类别控制器中的操作 index
:
- /categories
- /en/categories
- /de/categories
- ...
对于操作 view
在类别控制器中:
- /categories/englishslug
- /de/categories/deutshslug
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本文缺少的是 persist 功能rel="nofollow">路由器::connect()。
这会将语言参数添加到所有生成的 url 中。
路线示例:
What's missing from the article is the useful
persist
feature in available in the Router::connect().Which will add the language parameter to all generated urls.
Example route:
这正是 CakePHP 中自定义路由的用途。您可以定义自己的路由器类,它会为您处理所有逻辑,并在运行调度程序之前缓解所有问题。我最近通过引用 Mark Story 本人的这篇博客文章做了您想要做的事情:http://mark-story.com/posts/view/using-custom-route-classes-in-cakephp
This is exactly what custom routes in CakePHP are made for. You can define your own router class that handles all that logic for you and mitigates everything before running through the dispatcher. I recently did exactly what you're looking to do by referencing this blog post from Mark Story himself: http://mark-story.com/posts/view/using-custom-route-classes-in-cakephp