防止热链接但允许指定图像?

发布于 2024-10-07 20:57:45 字数 261 浏览 2 评论 0原文

我正在 htaccess 中防止热链接:

RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain\.com [NC]
RewriteRule \.(gif|jpe?g|png)$ - [F,NC,L]

但是,我想允许某些指定的图像可热链接,我该如何执行此操作? 我在网上找不到任何有关它的信息。

谢谢, 科林

I'm preventing hotlinking with this in htaccess:

RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain\.com [NC]
RewriteRule \.(gif|jpe?g|png)$ - [F,NC,L]

However, I'd like to allow certain specified images to be hotlink-able, how do I do this?
I can't find anything about it online.

Thanks,
Colin

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

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

发布评论

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

评论(2

焚却相思 2024-10-14 20:57:45
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain\.com [NC]
RewriteCond %{REQUEST_URI}  !^images/allow-hotlink/.+\.(gif|jpe?g|png)$
RewriteRule \.(gif|jpe?g|png)$ - [F,NC,L]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain\.com [NC]
RewriteCond %{REQUEST_URI}  !^images/allow-hotlink/.+\.(gif|jpe?g|png)$
RewriteRule \.(gif|jpe?g|png)$ - [F,NC,L]
歌入人心 2024-10-14 20:57:45

您可以添加另一个重写条件,如下所示:

RewriteCond %{REQUEST_URI}  !^whitelisted-directory/.*

但只需添加一个不执行上述任何操作的写入规则并最后声明它,它会更有效且更容易,如下所示:

RewriteRule ^(whitlistet-directory1|whitelisted-directory2) - [L]

you can add another rewrite condition like so:

RewriteCond %{REQUEST_URI}  !^whitelisted-directory/.*

but its more efficient and easier just to add one write rule that does nothing above and declare it at last like so:

RewriteRule ^(whitlistet-directory1|whitelisted-directory2) - [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文