.htaccess 此外,在尝试使用ErrorDocument处理请求时遇到404 Not Found错误

j13ufse2  于 2022-11-16  发布在  其他
关注(0)|答案(3)|浏览(127)

我已经使用我的.htaccess文件

  1. 404页面找不到了
    1.关闭目录扫描。
    以下是.htaccess文件的相关部分:
Options -Indexes
ErrorDocument 404 /Page-Not-Found.html

404部分工作。Test
但是,转到目录that actually exists(目录扫描)将返回以下内容:

Forbidden
You don't have permission to access /chihuahuaStories/2014/ on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
yvfmudvl

yvfmudvl1#

在.htaccess顶部尝试以下指令:

Options -Indexes
ErrorDocument 404 /Page-Not-Found.html
ErrorDocument 403 /Page-Not-Found.html
8wigbo56

8wigbo562#

好了,多亏了previous answer,我找到了解决方案,它提供了以下功能:

ErrorDocument 403 /Page-Not-Found.html
qco9c6ql

qco9c6ql3#

我得到了同样的错误,在我的WordPress网站迁移到新的服务器后。
此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。
我没有得到管理区或主页的404。只得到了页面和帖子上的错误。我偶然修复了这个错误。在管理区,我点击了设置/永久链接来检查永久链接是否与我以前的WordPress网站设置相匹配。所以,我点击了更新按钮。当我点击更新按钮时,修复了这个问题。
我想发生的事情是当我点击更新按钮的permalink页面上,它更新了.htaccess文件。

相关问题