如何配置 Apache 重写规则以将所有请求重定向到 404,除非明确允许

发布于 2024-11-13 00:35:37 字数 163 浏览 0 评论 0原文

我从昨天开始就在网上搜索,但找不到答案。至少有一个适用于 apache2 的。

我只想要一组 rewritemod 规则,这些规则将使 apache 将所有内容重定向到 404,但允许我显式地覆盖某些文件/文件夹。

我尝试过包容性规则,但无法使其发挥作用。

谢谢。

I'm searchin on internet since yesterday and i couldn't find the answer. At least one that works for apache2.

I just want a set of rewritemod rules that will make apache redirect everything to a 404 but allows me to explicitly override it for some files/folders.

I've tried an inclusive rule but i couldn't get it working.

Thanks.

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

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

发布评论

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

评论(2

想你的星星会说话 2024-11-20 00:35:37

只需在 .htaccess 文件中尝试这一行:

RewriteRule ^(?!(allowedFile\.html|allowedDirectory/)) - [R=404,L,NC] 

以上规则将对除名为 allowedFile.html 的文件和名为 allowedDirectory 的文件夹之外的所有内容抛出 404。

Just try this line in your .htaccess file:

RewriteRule ^(?!(allowedFile\.html|allowedDirectory/)) - [R=404,L,NC] 

Above rule will throw 404 for everything except a file called allowedFile.html and a folder called allowedDirectory.

自由如风 2024-11-20 00:35:37
RewriteRule ^/protectedfolder/(.*) -  [L] /* no substitution , serve as it is for this folder*/
RewriteRule ^$ - [R=404,L] /*reject everything */
RewriteRule ^/protectedfolder/(.*) -  [L] /* no substitution , serve as it is for this folder*/
RewriteRule ^$ - [R=404,L] /*reject everything */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文