2👍
✅
When you use mod_wsgi
Django is responsible for showing 404 pages (not Apache).
This fails because you have bug in your main urls.py file. You probably have following code:
url('', my_home_view),
but you should have:
url('^$' my_home_view),
Show your urls file if my guess isn’t correct.
Source:stackexchange.com