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

pat*_*ues -3 php

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

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

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

OZ_*_*OZ_ 6

你忘了标题的名称:

header("Location: http://example.com");
Run Code Online (Sandbox Code Playgroud)