如何使用HttpResponseRedirect从http://127.0.0.1:8000/accounts/signin/重定向到http://127.0.0.1:8000/profile/
答案 0 :(得分:0)
假设您已正确设置urls.py文件,则应该是以下情况:
HttpResponseRedirect('/profile')
以上内容显然应该放在适当的视图中,例如:
def signin(request):
...
... # perform whatever logic
HttpResponseRedirect('/profile') # redirect to 'profile'