Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you do that? But avoid it for a specific language if possible

Having to write it for each url is annoying..

Eg: I want my site to respond to / and /fr-FR/ for every url. The former for english, the latter for french.

share|improve this question

2 Answers

up vote 3 down vote accepted

You should take a look at the JMSI18nRoutingBundle, it add internationalization support to routes without having to duplicate any routing definition.

This bundle comes configured with three commons scenario for translating routes. Your example is a perfect fit for the Scenario 2 which is "Prefixing All Routes With The Locale except those of the default locale"

share|improve this answer

In your routing.yml, you might have something like (if youre using yaml for routing configuration:

AcmeTestBundle:
  resource: "@AcmeTestBundle/Resources/config/routing.yml"
  prefix: /

Have you tried adding {locale} to the prefix?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.