I\'m configuring my Django project to run on Apache using mod_wsgi. I am attempting to run Django below the directory \'cflow\' on apache, but am running into problem with r
Things to try:
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.
Looks like your site is using login_required decorator. In that particular case you can add to settings.py:
LOGIN_URL = '/cflow/accounts/login/'