I want to make a redirect and keep what is the query string. Something like self.redirect plus the query parameters that was sent. Is that possible?
self.redirect
newurl = '/my/new/route?' + urllib.urlencode(self.request.params) self.redirect(newurl)