map_defaults.xml 705 B

123456789101112131415161718192021
  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. http://symfony.com/schema/routing/routing-1.0.xsd">
  6. <route id="blog" path="/blog">
  7. <default key="_controller">
  8. <string>AcmeBlogBundle:Blog:index</string>
  9. </default>
  10. <default key="values">
  11. <map>
  12. <bool key="public">true</bool>
  13. <int key="page">1</int>
  14. <float key="price">3.5</float>
  15. <string key="title">foo</string>
  16. </map>
  17. </default>
  18. </route>
  19. </routes>