对 .htaccess 的请求应返回 404 而不是 403
这是 有没有办法强制 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就在我发布问题后,我找到了以下解决方案:
.ht
类型文件的默认服务器配置的
规则。工作原理如下:
Just after I posted my question, I came to a solution towards the following:
<Files>
rules for.ht
type of files.Works like this: