我已经配置
handler404 = 'myapp.views.error404'
定义:
def error404(request):
print "404 - Page"
return render(request, request.LANGUAGE_CODE + "/404.html" , status=404 )
在 URL 调度程序中 - 工作正常。但是我在终端中看到每个请求的 404 - Page 消息,但是只有当我输入错误的 URL 时,我才会被重定向到 404.html。
这种行为的任何重要原因。