如何编辑 Apache Forbidden 错误“您无权访问此资源。服务器无法读取 htaccess 文件,为了安全拒绝访问”

问题描述 投票:0回答:0

我正在尝试在我的站点中通过 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 错误吗?

linux apache server apache2 errordocument
© www.soinside.com 2019 - 2024. All rights reserved.