I'm trying to use this URL pattern:
(r'^welcome/(?P.+)/$', 'welcome'),
to match URL like this:
but to my surprise, I found the value of next turned out to be:
http:/google.com/
It seems that double slashes are somehow compressed into one slash.
Why django behave like this and is there workaround?