http_response_code()无法正常运行

时间:2018-04-22 19:45:52

标签: php http-status-code-404 http-status-codes

目标:将php中的http_response_code404更改为200

我目前正在使用

<?php
http_response_code(200);
?>

httpstatus.io仍在推动404。

滑稽。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

这表示你将httpstatus.io指向错误的页面。如果它是404,这意味着你的PHP代码不在你正在查看的URL上,因此http_response_code()方法将不起作用。检查您的网页地址是否准确。