我正在寻找一些简单的东西,但经过多次搜索后我不知道该怎么做。我查看了 Zend 1.12 Route 的文档,但我不太明白。
我在 Zend 框架中有这些页面:application/views/scripts/index/index.phtml contact.phtml
在 application/views/layouts/scripts/layout.phtml
例如,我想将 href 链接到 contac.phtml。我正在寻找类似的事情:
$this->url('contact')
然后,它重定向到页面联系人......但我试图在 bootstrap.php 中添加一个路由,但我真的不知道如何......
$router->addRoute('contact',
new Zend_Controller_Router_Route('application/scripts/index/contact.phtml'));
谢谢,
大卫