Generalnie nie powinno być żadnych niestandardowych komunikatów w 404 błędach bu, jeśli chcesz go zaimplementować, możesz to zrobić za pomocą middleware django.
Middleware
from django.http import Http404, HttpResponse
class Custom404Middleware(object):
def process_exception(self, request, exception):
if isinstance(exception, Http404):
# implement your custom logic. You can send
# http response with any template or message
# here. unicode(exception) will give the custom
# error message that was passed.
msg = unicode(exception)
return HttpResponse(msg, status=404)
middleware Ustawienia
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'college.middleware.Custom404Middleware',
# Uncomment the next line for simple clickjacking protection:
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
to załatwi. Popraw mnie, jeśli robię coś złego. Mam nadzieję że to pomoże.
Odkąd przejąłeś 'handler404', zaprojektuj' 404.html' i użyj 'podniesienia Http404'' – karthikr