Is there a way for a web server to issue a redirect that does not require the browser to issue a second request?
For example, the browser requested http://www.mysite.com/lion, but the server wants the browser to change location to http://www.mysite.com/jungle. The only way I know how to accomplish this is for the server to send a 3xx status code with the jungle URL, and the browser issues a new request to retrieve it.
Is it possible for the server to deliver the page jungle in response to the lion request, and just tell the browser "Set your URL to http://www.mysite.com/jungle"?