FOSUserBundle : Redirect the user after register with EventListener

后端 未结 5 1229
有刺的猬
有刺的猬 2020-12-03 08:07

I want to redirect the user to another form just after registration, before he could access to anything on my website (like in https://github.com/FriendsOfSymfony/FOSUserBun

5条回答
  •  执念已碎
    2020-12-03 09:01

    Route redirection can also be used:

    fos_user_registration_confirmed:
        path: /register/confirmed
        defaults:
            _controller: FrameworkBundle:Redirect:redirect
            route: redirection_route
            permanent: true
    

提交回复
热议问题