Hello... Help... How will I know the URL after a redirect. Example
http://www.veryaffordableloans.com?SID=google_misc is redirected to
http://www.theloanpage.com/form/LoanC.aspx. I want to get the second
URL. Please help... Thanks...
IveCal schrieb:
> Hello... Help... How will I know the URL after a redirect. Example
> http://www.veryaffordableloans.com?SID=google_misc is redirected to
> http://www.theloanpage.com/form/LoanC.aspx. I want to get the second
> URL. Please help... Thanks...
This is what the server sends back in response if you send a request for
http://www.veryaffordableloans.com?SID=google_misc:
HTTP/1.1 302 Moved Temporarily
Content-Length: 0
Location: /?SID=google_misc/?ABCDEFGH
There are tons of information about what this means:
http://www.google.com/search?q=http+headers+302
Timo