我的环境是:安装为 apache2handler 的 PHP 5.2 共享主机
我配置了 ErrorDocuments:
ErrorDocument 404 "Simply Not Found"
# OR
ErrorDocument 404 /errors/fancy-not-found.php
# both variants works as expected
但是,PHP手册中最简单的示例不想与 Apache2 合作并执行兼容的错误处理:
<?php
header("HTTP/1.0 404 Not Found");
die(); /* results in empty page */
/* OR */
die('Failed'); /* reports failure */
?>
如何修改此代码以触发指定的错误并使 Apache 对其进行排序?