下面是我的routes.xml文件,它被載入到我的Zend Framework應用中。有兩條路線,其中一條應與網址/aanbod/tekoop/huis
匹配,另一條應匹配/aanbod/200/gerenoveerde-woning
Zend Route XML配置無法正常工作
問題是,這兩個示例網址都以細節操作結束,而第一個網址應以索引操作結束。
任何人都可以澄清這個路由設置有什麼問題嗎?
<routes>
<property_overview type="Zend_Controller_Router_Route">
<route>/aanbod/:category/:type</route>
<reqs category="(tekoop|tehuur)" />
<reqs type="[A-Za-z0-9]+" />
<defaults module="frontend" controller="property" action="index" />
</property_overview>
<property_detail type="Zend_Controller_Router_Route">
<route>/aanbod/:propertyid/:slug</route>
<reqs propertyid="[0-9]+" />
<reqs slug="(^\s)+" />
<defaults module="frontend" controller="property" action="detail" />
</property_detail>
</routes>
不要以正斜槓開始您的路線。該框架處理基礎URL前綴 – Phil 2011-08-17 13:27:37