这是我的网址:http://server.com/index.php?module=purchases&ticket=12345&getPO=true
<?php
if ($_GET['getPO'] == "true"){
header("Location:http://google.com");
echo "Here";
}else{
/other stuff...
}
在上面的代码中我看到“Here”但我没有被重定向到url。我错过了什么?我已经确认没有其他文本被发送到浏览器,没有空格等等....