我需要回复状态代码为204的HEAD请求。
<?php
if($_SERVER['REQUEST_METHOD']=='HEAD') {
ob_clean();
setHeaderStatus(204, true);
// other headers
header('X-Other-123: 123');
header('Location: '.sprintf('%s://%s%s', $_SERVER['REQUEST_SCHEME'],
$_SERVER['HTTP_HOST'], $_SERVER['REQUEST_URI']));
header('Date: '.date('r'));
header('Content-Type: text/html', true);
header('Content-Length: 0', true);
flush();
die;
}
$messages = array( // {{{
// ...
204 => '204 No Content',
// ...
);
function setHeaderStatus($status, $replace = true)
{
Global $messages;
if (headers_sent() === true)
return;
if (strpos(PHP_SAPI, 'cgi') === 0) {
header('Status: '.$messages[$status], $replace);
} else {
header($_SERVER["SERVER_PROTOCOL"].' '.$messages[$status], $replace);
}
}
使用cURL进行测试:
curl -i --noproxy 127.0.0.1 -X HEAD http://localhost/test.php
结果:
HTTP/1.1 302 Found
Date: Thu, 20 Feb 2014 07:46:27 GMT
Server: Apache/2.4.4 (Win32) OpenSSL/0.9.8y PHP/5.4.19
X-Powered-By: PHP/5.4.19
X-Other-123: 123
Location: http://localhost/test.php
Content-Type: text/html
所以Apache似乎覆盖了PHP设置的状态代码?
提前致谢。
答案 0 :(得分:0)
在setHeaderStatus(204, true);
后尝试header('Location:...
。
通常header('Location:...'
会自动将标题状态更改为301或302以重定向。可能会覆盖你的设置。
答案 1 :(得分:0)
解决。
正如PHP手册所说:
“第二个特殊情况是”Location:“标题。它不仅将此标题发送回浏览器,而且还向浏览器返回REDIRECT(302)状态代码,除非201或3xx状态代码已经确定了。“
当我设置204代码时,它总是被Location头覆盖为302。
最终解决的是:
header('Location: ...', true, 204 )