0

如何使用参数在 Bootstrap 中创建 url 路由,例如 www.example.com/index/careers/jobs www.example.com/index/careers/placements

其中 index 是我的控制器,而 careers 是操作。工作和展示位置分别是参数。到目前为止,以下是我创建的,但它对我不起作用。

$route = new Zend_Controller_Router_Route_Regex ('index/careers/jobs', array ('controller' => 'index', 'action' => 'careers'), array (1=> 'jobs'), 'index/careers/工作' ); $router->addRoute('职业', $route);

4

1 回答 1

0

在您的引导程序中添加此功能

 protected function _initRouter()
 {
    $router->addRoute('yourRouteName', new Zend_Controller_Router_Route('yournewLocationRoute', array('controller' => 'toYourControllerName', 'action' => 'toYourActionName')));

 }
于 2013-09-26T22:05:02.587 回答