I'm trying to do an external redirection with no success. Everything I've found using Google points to internal redirection, and I want to have external redirection so I'd have GET values in my URL. Could someone perhaps clue me in?
In CherryPy 3.0 and up you can do something like:
url = cherrypy.request.base + "?errormsg=Not%20Logged%20In"
raise cherrypy.HTTPRedirect(url)
I am not sure if this works in earlier versions though.
Jason