标签: php http-headers http-status-codes
使用header()使用PHP设置自定义状态代码响应时:
header()
header("Status: 404 Not Found");
正确,或:
header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
哪个是http标准?或者,你应该同时设置两个吗?
http
答案 0 :(得分:2)
我通常设置错误代码如下:
header('HTTP/1.0 404 Not Found');