我正在使用Symfony2和FOSUserbundle开发一个应用程序.
当用户登录系统时我想将它们重定向到/ user / username,用户名显然会随每个用户而变化.
Security.yml的一个选项是default_target_path.是否可以将default_target_path设置为动态路径,或者我需要在登录时覆盖FOSUB的类.
最佳答案 覆盖
SecuredController和
Templemate.
在用户登录时的控制器中,创建变量并将其传递给您的同伴
<input type="hidden" name="_target_path" value="{{redirect_url}}" />