[Answered ]-Why doesn't Apache display 404 errors with Django and mod_wsgi?

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.

Leave a comment