标头重定向到位置不起作用

时间:2013-07-07 09:58:21

标签: php

我的服务器根目录中有一个文件:

<?php 
  header("Location: http://www.google.com/", true); //this does not work
  //echo "Test"; //this is tested and works.
?>

我的php.ini文件在某处出错了,为什么会这样?

2 个答案:

答案 0 :(得分:6)

您忘记了标题的名称:

header("Location: http://example.com");

答案 1 :(得分:1)

删除<?php ...之前的所有空格并阅读How to fix "Headers already sent" error in PHP