如何使用routes.ini文件在zend框架中为您的愿望制作路由URL?

时间:2014-01-07 09:20:26

标签: zend-framework routes zend-route

我需要像以下

那样的路由网址

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的任何其他方式。

我在网上搜索但我没有得到正确的解决方案。

1 个答案:

答案 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中