阻止 swf 文件被热链接
我想知道如何阻止其他网站管理员盗链我的 Flash 应用程序并在他们的网站上使用它。
I would like to know how I can stop other webmasters from hotlinking my flash application and using it on their websites.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是让您的 Web 服务器代码检查 HTTP Referer 标头 并阻止如果不是来自您的网站,请下载。如果您告诉我们您拥有哪个服务器端平台,我们也许可以给您更具体的答案。
The easiest way to do this is to have your web server code check the HTTP Referer header and block the download if it's not from your site. If you tell us which server-side platform you've got, we may be able to give you a more specific answer than that.
让 Flash 应用程序检查域,如果它无法位于您的域中,则将其重定向到您的网站。让其他网站管理员为您的网站带来流量。 :)
我使用 switch 语句来检测这一点,因为如果您正在测试您的应用程序并在本地文件系统下运行,它将是 localhost 并且显然您不想在测试期间重定向
Have the flash app check the domain and if it fails to be on your domain make it redirect to your site. Let the other webmasters drive traffic to your site. :)
I use a switch statement to detect this, because if you are testing your app and running under the local file system it will be localhost and obviously you don't want to redirect during testing