我的配置中有这个
firewalls:
login_firewall:
pattern: ^/login$
anonymous: ~
secured_area:
pattern: ^/admin
form_login:
login_path: /login
check_path: /login_check
logout:
path: /logout
我的问题是,如果我使用它,那么我会得到
Unable to find the controller for path "/login_check" error
如果使用一切正常
pattern: ^/
Symfony decumentation 说要把 login_check 放在防火墙后面,我不知道我该怎么做