PHP标头重定向失败

时间:2017-08-04 19:26:01

标签: php

这是我的网址: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。我错过了什么?我已经确认没有其他文本被发送到浏览器,没有空格等等....

0 个答案:

没有答案