I tested with following script:
<?php
header("Status: 302");
header('Location: /phpinfo.php', true, 302);
header("Content-Length: 0", true);
header("Connection: close", true);
echo str_repeat("\r\n", 128); // for IE
?>
It is working fine: redirect to /phpinfo.php successfully.