Zend 路由器配置 xml,快捷方式?
我有一个像这样的 xml
<configdata>
<routes>
<home type="Zend_Controller_Router_Route">
<route>home</route>
<defaults>
<controller>index</controller>
<action>index</action>
</defaults>
</home>
</routes>
</configdata>
现在这可以工作,但我想给每个路由一个快捷方式,就像您在引导程序中添加这样的一样。
$router->addRoute('shortcut_key',$route);
我如何在配置 xml 中执行此操作?
I have an xml like this
<configdata>
<routes>
<home type="Zend_Controller_Router_Route">
<route>home</route>
<defaults>
<controller>index</controller>
<action>index</action>
</defaults>
</home>
</routes>
</configdata>
Now this works but I'd like to give each rout a shortcut like you would add in bootstrap like this..
$router->addRoute('shortcut_key',$route);
How can I do this in the config xml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 bootsrap.php 上...
其中,routes.xml 文件是包含所有路由的 xml 文件,并且它必须位于您的应用程序文件夹内
On your bootsrap.php...
where routes.xml file is the xml file containing all routes and it must be inside your application folder