我有一个像这样的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中执行此操作?
在你的bootstrap .php…
protected function _initRoutes()
{
$routefile = new Zend_Config_Xml(APPLICATION_PATH.'/routes.xml');
$router = Zend_Controller_Front::getInstance()->getRouter();
$router->addConfig($routefile);
return $router;
}
其中routes. XML文件是包含所有路由的XML文件,它必须位于你的应用程序文件夹