when-env.xml 543 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing
  5. https://symfony.com/schema/routing/routing-1.0.xsd">
  6. <when env="some-env">
  7. <route id="a" path="/a2" />
  8. <route id="b" path="/b" />
  9. </when>
  10. <when env="some-other-env">
  11. <route id="a" path="/a3" />
  12. <route id="c" path="/c" />
  13. </when>
  14. <route id="a" path="/a1" />
  15. </routes>