ZF:路由到合作伙伴网站URL

时间:2010-09-01 09:47:16

标签: zend-framework zend-route

如何设置指向合作伙伴网站网址的路线?

示例:

<a href="<?php echo $this->url(array(), 'superPartnerRoute'); ?>">Try this ultra fab partner website</a>

原因; URL非常复杂,并且正在我正在使用的网站上使用。

http://slippery.slick.domain.com/very/long/url/index.asp?view=23457

如果此网址 - 由于某种原因 - 更改我需要更改网站周围的网址。

我可以将它添加到语言文件中,但我想将事情分开。

所以 superPartnerRoute 应该指向http://slippery.slick.domain.com/very/long/url/index.asp?view=23457

2 个答案:

答案 0 :(得分:1)

您可以使用与路径路径链接在一起的主机名路由。

答案 1 :(得分:0)

有时候我应该在问之前尝试一下; - )

刚刚将此添加到我的routes.ini

resources.router.routes.superPartnerRoute.type = "Zend_Controller_Router_Route_Static"
resources.router.routes.superPartnerRoute.route = "http://slippery.slick.domain.com/very/long/url/index.asp?view=23457"

像魅力一样!