Here's my code in redirect.php: (I know it's unpractical)
<?php
header("Location: " . $_GET['to']);
?>
And here's the problem. This page works and redirects correctly:
redirect.php?to=http://www.google.com
But this one doesn't:
redirect.php?to=http://www.google.com/
The problem is not with the final slash, this one doesn't work too:
redirect.php?to=http://www.google.com/intl/en/about/corporate/index.html
Neither does the urlencoded GET request:
redirect.php?to=http%3A%2F%2Fwww.google.com%2F
But the following erroneous ones do work: (Notice one slash in http:/)
redirect.php?to=http:/www.google.com/
redirect.php?to=http:/www.google.com/intl/en/about/corporate/index.html
And this one causes a 404 error on my own server as it should ("The requested url www.google.com not found on our server..."):
redirect.php?to=www.google.com/
On Firefox the erroneous ones show "The connection to the server was reset" and Chrome also shows the "Error 101 (net::ERR_CONNECTION_RESET): The connection was reset" page. Because of this I can't see what headers the server sends. Actually it seems it doesn't send any!
The funny part is that all of the above requests work fine when i test them on my localhost with WampServer, but when I upload them, it just doesn't work! There is no output or BOM before header, no proxy is used and all work is done on port 80. Can be my server config (which config?) the source of the problem?
I can't think of anything else to try and experiment.
I've already read some issues with redirecting after sending POST data but I don't think it's related to this problem.
EDIT:
Tried sending 301 / 303 status headers before the Location header... No Luck.
Called a friend and asked him to test with his different PC and different ISP... No Luck.
Wrote another script in ASCII encoding (instead of utf8)... No luck.
Please point me to other tests and diagnosis I can make on the issue.
redirect.php?to=www.google.com/and have your header set toheader("Location: http://" . $_GET['to']);? – positiv Oct 5 '11 at 13:39