对 .htaccess 的请求应返回 404 而不是 403

发布于 2024-12-12 13:17:39 字数 439 浏览 0 评论 0原文

这是 有没有办法强制 apache 返回 404 而不是 403 的后续? 建议使用 RedirectMatch 到 404 来完成此操作。

它对于大多数情况都工作得很好,但是如果我请求:

 http://example.com/.htaccess

如果我的 .htaccess 文件中有(或没有)这个,我会得到 403 而不是 404:

RedirectMatch 404 ^/\.htaccess$

有没有办法覆盖默认 403 - 禁止 apache 在 .htaccess 文件本身内部的行为?

This is sort of a follow-up to Is there a way to force apache to return 404 instead of 403? which suggested RedirectMatch to 404 to accomplish this.

It works perfectly fine for most of anything, however if I request:

 http://example.com/.htaccess

I get a 403 and not a 404 if I have (or not) this in my .htaccess file:

RedirectMatch 404 ^/\.htaccess$

Is there a way to override the default 403 - Forbidden behavior of apache from inside the .htaccess file itself?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2024-12-19 13:17:39

就在我发布问题后,我找到了以下解决方案:

  • 模仿 .ht 类型文件的默认服务器配置的 规则。
  • 允许他们。
  • 将它们重定向到 404。

工作原理如下:

<Files ~ "^\.ht">
  Order Deny,Allow
  Allow from all
  Satisfy All
  Redirect 404 /
</Files>

Just after I posted my question, I came to a solution towards the following:

  • Mimic the default server configuration's <Files> rules for .ht type of files.
  • Allow them.
  • Redirect them to 404.

Works like this:

<Files ~ "^\.ht">
  Order Deny,Allow
  Allow from all
  Satisfy All
  Redirect 404 /
</Files>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文