Symfony2:为bundle添加前缀路由

时间:2015-01-17 08:24:51

标签: symfony routing

我正在使用Symfony2,我有一个包含多个控制器的软件包。我希望所有人都有一个共同的前缀路由。

这样的事情:

bundle_path / controller1_path
bundle_path / controller2_path
bundle_path / controller3_path

等。

如果没有将bundle_path编写到每个控制器中,有没有办法做到这一点?

1 个答案:

答案 0 :(得分:2)

您可以在routing.yml文件中添加前缀来确定捆绑包的路由。例如:

acme_customer_area_frontend:
    resource: "@AcmeCustomerAreaFrontendBundle/Resources/config/routing.yml"
    prefix:   /customer/frontend

希望这个帮助