阻止 swf 文件被热链接

发布于 2024-11-01 08:14:19 字数 49 浏览 0 评论 0原文

我想知道如何阻止其他网站管理员盗链我的 Flash 应用程序并在他们的网站上使用它。

I would like to know how I can stop other webmasters from hotlinking my flash application and using it on their websites.

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

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

发布评论

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

评论(2

忘你却要生生世世 2024-11-08 08:14:19

最简单的方法是让您的 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.

预谋 2024-11-08 08:14:19

让 Flash 应用程序检查域,如果它无法位于您的域中,则将其重定向到您的网站。让其他网站管理员为您的网站带来流量。 :)

    import flash.net.LocalConnection;
    var lc:LocalConnection = new LocalConnection();
    switch( lc.domain ){
      case "localhost":
      case "mydomain.com"
        break;
      default:
        // do redirect here
}

我使用 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. :)

    import flash.net.LocalConnection;
    var lc:LocalConnection = new LocalConnection();
    switch( lc.domain ){
      case "localhost":
      case "mydomain.com"
        break;
      default:
        // do redirect here
}

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

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