Yes it can be done using django middleware.
Use Process Request to intercept the requests.
It should return either None or an HttpResponse object. If it returns
None, Django will continue processing this request, executing any
other process_request() middleware, then, process_view() middleware,
and finally, the appropriate view. If it returns an HttpResponse
object, Django won't bother calling any other request, view or
exception middleware, or the appropriate view; it'll apply response
middleware to that HttpResponse, and return the result.
HttpRequest has a path attribute which contains the url. Use that url to lookup the urlconf and check the urlconf params for the accept-method and return None or the same HttpResponse accordingly.