我正在尝试在我的站点中通过 Apache2.4(Over Suse Linux)设置自定义错误。
我遇到的最高问题是当我使用 chmod 设置一个带有标志“无权限”的目录时
sudo chmod 000 /path/folder
服务器给我返回错误
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<h1>Forbidden</h1>
<p>You don't have permission to access this resource.Server unable to read htaccess file, denying access to be safe</p>
</body>
</html>
似乎不遵循
文件根文件夹中的行
.htaccess
但是当我用这样的
ErrorDocument 403 /errors/403
文件创建一个文件夹时,它后面的 ErrorDocument
行
.htaccess
这是为什么? 以及如何解决它并使其遵循ErrorDocument中的错误? 或者,如果不可能,有机会编辑默认的 Apache 错误吗?