Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
usually,ie open to a URL first need call a InternetConnect ,such as www.google.com call InternetConnect with www.google.com param,but!
----------------------------
if open a php with code
header("Location: http://www.microsoft.com");
get a 302 rediret,now when ie to call a internetconnect,site www.microsoft.com already show final
-------------
at all.....pls tell me ,IE how to open a 302 rediret inside a link?what's a API?
Posted

1 solution

Response codes are sent by the web server. With codes between 300-399, the server tells the browser that the resource is currently/temporarily/permanently not available on the requested URL, but can be found instead at a different location. For the user of a web browser, it would be terribly inconvenient if he had to read that redirection message and then manually navigate to the new address, consequently any web browser automatically follows the redirection.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900