我希望路由器匹配这个 URL
http://hawthornfc.localsupportus.com.au/hints
在我的 routes.ini 文件中,我有
subdomain.type = "Zend_Controller_Router_Route_Hostname"
subdomain.route = ":clubalias.localsupportus.com.au"
subdomain.reqs.clubalias = "\w+"
subdomain.default.clubalias = "geelongscouts"
subdomain.defaults.controller = "index"
subdomain.defaults.action = "profile"
hints.type = Zend_Controller_Router_Route_Static
hints.route = "hints"
hints.default.controller = "help"
hints.default.action = "hints"
subdomain_hints.type = Zend_Controller_Router_Route_Chain
subdomain_hints.chain = "subdomain, hints"
我的路线完全匹配,即。subdomain_hints 但它转到 index/profile 而不是 /help/hints
请指教