Is there any straightforward to convert all incoming urls to lowercase before they get matched against urlpatterns in run_wsgi_app(webapp.WSGIApplication(urlpatterns))?
|
1
|
|
||
|
|
|
|
You'd have to wrap the instance of |
||||||
|
|
|
I wonder if you could modify your CGI environment variables before executing the WSGIApplication instance.
Something along those lines. I've done this myself for slight URL modifications, however I 301 redirected to the new URL; I didn't continue processing with WSGI. |
||
|
