6

我有一个routing.yml文件,我在其中定义了我的包的路由。我的路由文件越来越大。

有没有办法将 routing.yml 文件拆分为多个文件?例如:

  • user_routing.yml
  • 车辆路由.yml
  • cost_centers_routing.yml

注意:我使用的是 Symfony 2.2;

4

1 回答 1

18

routing.yml 可以被多个文件分割。您可以在 routing.yml 文件中包含单独的路由文件。

acme_demo_user:
  resource: "@acmeDemoBundle/Resources/config/routing/user_routing.yml"
  prefix: /user
acme_demo_vehicles:
  resource: "@acmeDemoBundle/Resources/config/routing/vehicles_routing.yml"
  prefix: /vehicles
.............
.............
于 2013-05-03T09:27:19.660 回答