我正在使用 Zend_Framework 1。在我的 Bootstrap.php 中,我重写了我的类别链接,如下所示:
$route = new Zend_Controller_Router_Route_Regex("^([a-z,0-9,-]*)(/|)([a-z,0-9,-]*)(/|)([a-z,0-9,-]*)(/|)([a-z,0-9,-]*)(/|)([a-z,0-9,-]*)(/date/|)([a-z]*)(/page/|)([0-9]*)$",
array(
"module" => "default",
"controller" => "categories",
"action" => "index"
),
array(
1 => 'firstparam',
3 => 'secondparam',
5 => 'theeparam',
7 => 'fourparam',
9 => 'fiveparam',
11 => 'date',
13 => 'page',
)
);
$router->addRoute("RouteCategories", $route);
问题是我所有的管理链接(我使用的一个模块)现在都进入了这个条件。有没有办法将此条件仅应用于模块:默认而不重写我所有的管理链接?谢谢