Browser bar on redirect

liunx

Guest
I have several URS's which redirect to the same page. Is there a way I can hide the location of the page to which they are redirected from the browser bar?<!--content-->Not if you're actually doing a redirect. If you can forward internally from the request such that the other page is the response (typical on Java servers) then the location bar will retain the request URL, not the URL of the responding page. I.e., what appears in the location bar is what the browser requests. With a redirect the browser actually requests the next URL.<!--content-->
 
Back
Top