I allow users to submit a query at mysite.com/go/QUERY\
If the query contains "/" Apache chokes.
From urls.py:
(r'^go/(?P<querytext>.*)$', 'mysite.engine.views.go'),
Try:
http://mysite.com/go/http%3A%2F%2F
Result:
Not Found
The requested URL /go/http:// was not found on this server.
Apache/2.2.12 (Ubuntu) Server at ...
BUT, if I enter the non URL quoted values it works:
http://mysite.com/go/http://
WORKS just fine...
Any ideas?