Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 apache 专用服务器上有一个 php 脚本。我已经清理了代码以测试 header() 是否有效……这是我测试的代码:
<?php header("Location : http://www.lemonde.fr/"); ?>
页面加载并显示白屏,没有重定向。
我认为它应该是 php.ini 设置或 apache 设置,但哪一个?
首先要尝试的是更改Location :为Location:(它可能对额外的空间很敏感)。
Location :
Location:
这是唯一的代码吗?WSOD 通常是 PHP 语法错误的标志,但这看起来很干净。