I'm working on a Symfony2 project and in the file routing.yml
I have the following lines:
_front:
resource: routing_front.yml
_admin:
resource: routing_admin.yml
prefix: /admin
So this actually allows defining the routes for the front-end and the back-end in separate dedicated files.
What about the names though ? Is it simply a naming convention to start with an underscore - which will tell at first sight that the actual routes are in a different file - or has this an influence on how the framework handle those ?