How to configure where to redirect after a log out in Django?

后端 未结 11 1205
情书的邮戳
情书的邮戳 2020-12-02 09:48

Just wondering where I can set the url to redirect to after logout. I know you can set the login url. I want to redirect to my home page.

11条回答
  •  渐次进展
    2020-12-02 10:15

    add this in you project setting.py file LOGOUT_REDIRECT_URL = '/'

    you can write your URL between '' I use my index page for logout default redirect

提交回复
热议问题