.htaccess:禁用热链接(通过重定向)

发布于 2024-10-18 10:36:31 字数 244 浏览 0 评论 0原文

我正在托管一个包含一些 Flash 的网站。 现在,另一个网站直接链接到 Flash,给我带来了大量的流量。问题:我没有收到任何可以帮助我支付服务器账单的广告。 我认为将 Flash 的直接链接重定向到包含它的网站就可以了。

闪存:www.example.com/flash/1.swf 页面:www.example.com/1(<-- 重定向至此处!)

它可能应该与 .htacess 一起使用,但我不知道如何操作。也许你可以帮助我?

I am hosting a site that has some flash in it.
Now a different site is linking directly to the flash, causing massive traffic for me. The problem: I do not gain any ads which would help me pay the server bills.
I thought it would be OK to redirect the direct link to the flash to the site containing it.

Flash: www.example.com/flash/1.swf
Page: www.example.com/1 (<-- redirect here!)

It probably should work with .htacess, but I have no idea how. Maybe you can help me?

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

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

发布评论

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

评论(1

最终幸福 2024-10-25 10:36:31
RewriteCond %{HTTP_REFERER} !www\.example\.com
RewriteRule /flash/(.+)?\.swf$ www.example.com/$1 [L,R] 
RewriteCond %{HTTP_REFERER} !www\.example\.com
RewriteRule /flash/(.+)?\.swf$ www.example.com/$1 [L,R] 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文