使页面行为像404

时间:2011-08-31 01:06:52

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

我想让页面表现得好像它不存在并打印出404错误消息。这可以很好地工作,但当404页面可见时,它自己在整个网站下显示的页面。

代码:

header('HTTP/1.1 404 Not Found', true, 404);
require_once('error.php');

截图: enter image description here

有谁在这里知道如何解决这个问题? 提前谢谢。

1 个答案:

答案 0 :(得分:4)

header('HTTP/1.1 404 Not Found', true, 404);
require_once('error.php');
exit ();