我需要像以下
那样的路由网址http://www.website.com/module-name/controller-name/ {物品名称} / {文章ID}
我尝试使用routes.ini文件,但它无法正常工作
routes.index-latest.route = "index/latest/$1/:id"
routes.index-latest.module = "index"
routes.index-latest.defaults.controller = "latest"
routes.index-latest.defaults.action = "index"
routes.index-latest.defaults.id = ""
你有没有人可以就这些问题向我提出建议,或者请告诉我通过bootstrap文件实现URL的任何其他方式。
我在网上搜索但我没有得到正确的解决方案。
答案 0 :(得分:0)
我像示例@
一样固定自己routes.index-latest.route = "index/latest/:article_id"
routes.index-latest.defaults.module = "module-name"
routes.index-latest.defaults.controller = "controller-name"
routes.index-latest.defaults.action = "action-name"
routes.index-latest.defaults.article_id = ""
routes.index-latest.defaults.reqs.article_id = "\d+{1,}"
在routes.ini中