Well, that's interesting. Did you try a different browser, since it could be a browser issue, like here:
http://support.mozilla.com/tiki-view...2358&forumId=1
Actually, your server response should look like this:
Do you see the injected code in the request??Code:HTTP/1.0 301 Moved Permanently.
Connection: close.
Location: http://NEWURL
Try to retrieve the page with curl:
Code:bt-box# curl http://access.mycompany.com
<html>
<head>
<meta http-equiv="refresh" content="0;URL=http://newURL/">
</head>
<body>
.
.
.
</body>
</html>
Maybe you can try some other type of redirection like injecting this:
I hope I could help a little bit.Code:<body onload="document.location='http://NEWURL/'">
