I needed this to work around a poorly configured redirecting service.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from django.http import HttpResponseRedirect
import re
multislash_re = re.compile('/{2,}')
class NoDoubleSlashes:
"""
Some poorly configured redirecting sites (like 123-reg) add extra slashes to
URLs when they are redirected, e.g. example.com/blah redirects to
example.net//blah . This middleware eliminates any multiple slashes from
incoming request paths.
"""
def process_request(self, request):
if '//' in request.path:
new_path = multislash_re.sub('/', request.path)
return HttpResponseRedirect(new_path)
else:
return None
|
More like this
- Form field with fixed value by roam 3 days, 22 hours ago
- New Snippet! by Antoliny0919 1 week, 3 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 4 weeks ago
- get_object_or_none by azwdevops 6 months, 3 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago
Comments
Please login first before commenting.