我知道您可以发送一个标头,告诉浏览器该页面被禁止,例如:
header('HTTP/1.0 403 Forbidden');
但是,我怎样才能显示在服务器上针对此类错误创建的自定义错误页面?
默认情况下,仅发送标题会显示一个白页,但我记得前段时间阅读您可以使用客户错误页面。有人知道吗?
我知道您可以发送一个标头,告诉浏览器该页面被禁止,例如:
header('HTTP/1.0 403 Forbidden');
但是,我怎样才能显示在服务器上针对此类错误创建的自定义错误页面?
默认情况下,仅发送标题会显示一个白页,但我记得前段时间阅读您可以使用客户错误页面。有人知道吗?
只需在发送标头后回显您的内容。
header('HTTP/1.0 403 Forbidden');
echo 'You are forbidden!';
http_response_code是在 PHP 5.4 中引入的,它让事情变得更容易了!
http_response_code(403);
die('Forbidden');
更改标题后包含自定义错误页面。
For this you must first say for the browser that the user receive an error 403. For this you can use this code:
header("HTTP/1.1 403 Forbidden" );
Then, the script send "error, error, error, error, error.......", so you must stop it. You can use
exit;
With this two lines the server send an error and stop the script.
Don't forget : that emulate the error, but you must set it in a .htaccess file, with
ErrorDocument 403 /error403.php
看过很多答案,但正确的是按照php手册提供头函数调用的完整选项
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
如果你调用
header('HTTP/1.0 403 Forbidden', true, 403);
Apache 或任何其他服务器配置的 HTTP 403 的正常行为将遵循。
我已经阅读了这里的所有答案,但没有一个是针对我的情况的完整答案(在这个问题中完全相同)所以这是我收集建议答案的某些部分并提出确切解决方案的方式:
在任何 HTML 输出或标题之前在下面回显此代码!(即使是空格也会导致 PHP 发送 HTML/TEXT HTTP Header 并且它不起作用)下面的代码应该是你的第一行!
<?php header('HTTP/1.0 403 Forbidden');
$contents = file_get_contents('/home/your_account/public_html/domain.com/403.html', TRUE);
exit($contents);
现在你有了确切的解决方案。我通过 CPANEL 最新访问者进行了检查和验证,它被注册为确切的 403 事件。
.htaccess
ErrorDocument 403 /403.html
为了尽量减少服务器的职责,让它变得简单:
.htaccess
ErrorDocument 403 "Forbidden"
PHP
header('HTTP/1.0 403 Forbidden');
die(); // or your message: die('Forbidden');
使用 ModRewrite:
RewriteRule ^403.html$ - [F]
只需确保在 www 根目录中创建一个名为“403.html”的空白文档,否则您将收到 404 错误而不是 403。
我了解您的 apache conf 或 .htaccess 中已经定义了 ErrorDocument 的情况,并且希望在通过 php 手动发送 4xx 状态代码时显示这些页面。
不幸的是,这对于普通方法是不可能的,因为 php 将标头直接发送到用户的浏览器(而不是 Apache Web 服务器),而 ErrorDocument 是从 Apache 生成的 http 状态的显示处理程序。
发送403后刷新页面:
<?php
header('HTTP/1.0 403 Forbidden');
?>
<html><head>
<meta http-equiv="refresh" content="0;URL=http://my.error.page">
</head><body></body></html>