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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -