gpt4 book ai didi

apache - 将所有 Apache 2.2 403 Forbidden 重定向到 404 Not Found

转载 作者:行者123 更新时间:2023-12-02 08:35:24 24 4
gpt4 key购买 nike

我需要将 Apache 2.2 服务器上对任何给出 403 的目录的所有请求重定向到未找到 404 的目录。

例如:

  • /xyz/xyz/ 抛出 403 -> 重定向到 404
  • /xyz/sometext.txt 正常返回。

环顾四周,我发现了这篇文章:

Problem redirecting 403 Forbidden to 404 Not Found

RedirectMatch 404 ^/include(/?|/.*)$

/include 404 (instead of 403)
/include/ 404
/include/config.inc 404 (instead of 403)

但是,最后一种情况也会返回 404。此外,它只影响/include/目录,我正在寻找更多是否有任何禁止的目录。到目前为止我已经:

RedirectMatch 404 ^[\/[\w+]]+\/$

有人知道如何实现这一目标吗?谢谢,

最佳答案

要为今天导致 403 的任何请求返回 404 not found,您可以执行以下操作:

ErrorDocument 403 /404.php

然后在 /404.php 中,您可以添加此行以向客户端返回 404 状态:

<?php
# your custom 404 content goes here

# now make it return 404 status to browser
http_response_code(404);
?>
<小时/>

要对目录的所有请求返回 404,您可以执行以下操作:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ - [L,R=404]

关于apache - 将所有 Apache 2.2 403 Forbidden 重定向到 404 Not Found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22769790/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com