Hm, I did not recognize your prefix: /{_locale} in
resource: "@FOSUserBundle/Resources/config/routing/security.xml"
You must write the route to your action in (for exmpl ofc) routing.yml :
login_check: pattern: /{_locale}/login_check defaults: { _controller: YourBundle:Controller:someaction, _locale: en } requirements: _locale: en|ru
and security.xml :
check_path: /{_locale}/login_check
Do not forget to add
fos_user_security: resource: "@FOSUserBundle/Resources/config/routing/security.xml"
in your app/config/routing.yml .
try it, gl.
source share