Here are the posts tagged with http:

How to display a custom error page for HTTP status 405 (method not allowed) in Django

posted by Herman on Jan. 10, 2011, comments
I recently realized that, despite Django having the built-in (and very useful) @require_POST decorator, there is actually no easy way to display a nice error page if the user accidentally stumbles onto a page using a GET request (or vice-versa for the @require_GET decorator). In fact, Django doesn't even show the usual ...... Read more