change locale symfony 2.3

后端 未结 3 1232
梦如初夏
梦如初夏 2020-12-29 17:40

I just began with symfony I\'m trying to build a multilang website but I have a problem to change the locale

I read some posts and I read the documentation about thi

3条回答
  •  余生分开走
    2020-12-29 18:03

    If for example your default locale is french, except for one controller you want to have the default locale set to english can do that:

    routing.yml

    desktop_comingsoonpage:
        resource: "@RemmelComparabusBundle/Controller/ComingsoonpageController.php"
        defaults: { _locale: en }
        type:     annotation
    

    more info : Symfony doc

提交回复
热议问题