I have in my routing.yml specified the parameter _locale requirements in every single route and I think that must be something to simplify this situation.
routing.yml
ProjectBaseBundle_index:
pattern: /{_locale}
defaults: { _controller: ProjectBaseBundle:Default:index }
requirements:
_locale: en|es
ProjectBaseBundle_privacy:
pattern: /privacy/{_locale}
defaults: { _controller: ProjectBaseBundle:Default:privacy }
requirements:
_locale: en|es
.....
ProjectBaseBundle_legal:
pattern: /legal/{_locale}
defaults: { _controller: ProjectBaseBundle:Default:legal }
requirements:
_locale: en|es
I am using Symfony2.1 beta 3
Is possible to specify a global _locale requirements for all my routes?
I have discovered a way to do that:
Using a “master” routing to import the routing config. As my bundles usually have too much information, I have been separating the controllers, resources and routes in differents “modules”. As result of that approach, I have discovered this:
Master routing.yml
Child routing-default.yml
With this routing config, I minimize the places where need to write the locale requirements.