php - Automatic redirection not explicable -
in loginform (username, password) inserted html link forgotten passwords (/psw_forgotten). here routes :
psw_forgotten: path: /psw_forgotten defaults: { _controller: mybundle:login:psw_forgotten } psw_forgotten_check: path: /psw_forgotten_check defaults: { _controller: mybundle:login:psw_forgotten_check } psw_login: path: /login defaults: { _controller: mybundle:login:login } psw_login_check: path: /login_check defaults: { _controller: mybundle:login:login_check }
when click link, psw_fogotten route called there automatic redirection psw_login route.
in firebug can see:
get psw_forgotten 302 found login 200 ok ....
there no code in login controller psw_forgotten route have no error, proving not try go there.
can ?
thank you
your route psw_forgetten_check firewall symfony. must declare route out of firewall security symfony.
Comments
Post a Comment