让页面表现得像 404

发布于 2024-12-02 02:59:22 字数 289 浏览 2 评论 0原文

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

代码:

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

截图: 在此处输入图像描述

这里有人知道如何解决此问题吗? 提前致谢。

I want to make a page act like if it isn't exists and print out a 404 error message. This works perfectly but the page it self is showing under the whole website when the 404 page is visible.

Code:

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

Screenshot:
enter image description here

Does anyone here know how I can fix this problem?
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金橙橙 2024-12-09 02:59:22
header('HTTP/1.1 404 Not Found', true, 404);
require_once('error.php');
exit ();
header('HTTP/1.1 404 Not Found', true, 404);
require_once('error.php');
exit ();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文