如何使用参数在 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);