PHP Zend Route Config.ini - 类似模式 [英] PHP Zend Route Config.ini - similar patterns

查看:29
本文介绍了PHP Zend Route Config.ini - 类似模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用配置文件在我的应用程序中路由我的请求.我有以下条目:

I'm using a configuration file to route my requests in my application. I have the following entries:

routes.deal.route = "deal/:id/*"

routes.deal.route = "deal/:id/*"

routes.deal.defaults.controller = "deal"

routes.deal.defaults.controller = "deal"

routes.deal.defaults.action = "index"

routes.deal.defaults.action = "index"

routes.deal.reqs.id = "d+"

routes.deal.reqs.id = "d+"

routes.deal.route = "deal/buy/:id/*"

routes.deal.route = "deal/buy/:id/*"

routes.deal.defaults.controller = "deal"

routes.deal.defaults.controller = "deal"

routes.deal.defaults.action = "购买"

routes.deal.defaults.action = "buy"

routes.deal.reqs.id = "d+"

routes.deal.reqs.id = "d+"

这是我正在寻找的行为:mysite.com/deal/75 --- 这将显示 Deal 75 的详细信息(相当于 mysite.com/deal/?id=75; controller=deal, action=index)

here's what the behavior I'm looking for: mysite.com/deal/75 --- this will display the details of Deal 75 (equivalent to mysite.com/deal/?id=75; controller=deal, action=index)

mysite.com/deal/buy/75 -- 购买交易 75 或 (controller=deal, action=buy) -- 相当于 mysite.com/deal/buy?id=75

mysite.com/deal/buy/75 -- buy deal 75 or (controller=deal, action=buy) -- equivalent to mysite.com/deal/buy?id=75

我只能让一个工作,而另一个不能.无论在配置中首先指定哪个,这都是有效的.

I can only get one to work and not the other. Whichever is specified first in the config, that's what will work.

谁能指出我在这里做错了什么?非常感谢任何帮助.

Can anyone point out what I'm doing wrong here? Any help is greatly appreciated.

谢谢,王子

推荐答案

尝试更改第二条路线的名称,即:

Try changing the name of the second route, i.e:

routes.dealbuy.route = "deal/buy/:id/*"
routes.dealbuy.defaults.controller = "deal"
routes.dealbuy.defaults.action = "buy"
routes.dealbuy.reqs.id = "d+"

路由需要有不同的名称.

The routes need to have different names.

这篇关于PHP Zend Route Config.ini - 类似模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆