I have a 404.html page, but in some cases I want to be able to send a json error message (for 404 and 500, etc.). I read the following page:
https://docs.djangoproject.com/en/dev/topics/http/views/#the-404-page-not-found-view
Is there any sort of example that shows the implementation? I have it in my urls.py but it's not being picked up in the event of an error.
In addition to the previous answer, it is important to say that the views.py should return a HttpResponse with a 404 status in the http header. It is important to inform the search engines that the current page is a 404. Spammers sometimes creates lots of urls that could seem that would lead you to some place, but then serves you another content. They frequently make lots of different addresses serve you almost the exact same content. And because it is not user friendly, most SEO guide lines penalize that. So if you have lots of addresses showing the same pseudo-404 content, it could not look good to the crawling systems from the search websites. Because of that you want to make sure that the page you are serving as a custom 404 has a 404 status. So here it is a good way to go:
Into your application's urls.py add:
Into your application's views.py add:
The secret is in the last line: status=404
Hope it helped!
I look forward to see the community inputs to this approach. =)
This worked for me:
You can make it do anything as you wish when going to that controller.
Basics:
To define custom view for handling 404 errors, define in the URL config, a view for handler404, like
handler404 = 'views.error404'
Apart from the basics, some things to note about (custom 404 views):
Debug=False
mode.And more ignored one, across most answers (and this this stuck my brains out).
The 404 view defaults to
Notice the parameter
exception
This was causing a 404 to 500 redirect from within
def get_exception_response(self, request, resolver, status_code, exception)
function defined incore.handlers.base
since it could not find the parameterexception