Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. ## Listing 9-15 - The Default Routing Rules, in myapp/config/routing.yml
  2.  
  3. # default rules
  4. homepage:
  5. url: /
  6. param: { module: default, action: index }
  7.  
  8. default_symfony:
  9. url: /symfony/:action/*
  10. param: { module: default }
  11.  
  12. default_index:
  13. url: /:module
  14. param: { action: index }
  15.  
  16. default:
  17. url: /:module/:action/*
Add Comment
Please, Sign In to add comment