[Solved]-Django Apache Redirect Problem

15👍

Things to try:

  1. Change current domain to “yourdomain.tld/cflow” in the “sites” framework. It’s easy to do using django admin or dumpdata/loaddata manage.py commands.

  2. Looks like your site is using login_required decorator. In that particular case you can add to settings.py:

    LOGIN_URL = ‘/cflow/accounts/login/’

Leave a comment