Specifically my middleware is interested to differentiate between a GET request on:
- /admin/app/model/?
- /admin/app/model/
URL #1 was initiated with a dangling question mark.
From my experiments, django’s HttpRequest swallows it up and I am unable to differentiate between the two. Is there a way to obtain the raw nonfiltered query string ?
?should be escaped as%3F. So, may be you should choose another symbol, without such problems?