ホームページ > 記事 > CMS チュートリアル > dedecms ソフトウェア ダウンロード チャネルでのホットリンクを防ぐ方法
dedecms ソフトウェア ダウンロード チャネルでのホットリンクを防ぐにはどうすればよいですか?
Web サイトの改訂に伴い、以前の Web サイトの多くが内部ページにリンクされていました。これにより、ユーザー エクスペリエンスが低下し、一部の Web サイトが当社のリソースを盗むことができなくなります。
推奨調査: 梦Weavercms
dedeソフトウェア サイトを作成する欠点は、
再投稿すると、他の人があなたのダウンロードを再投稿してしまうことです。 http://www.xxx.com/plus/download.php...
、ダウンロード アドレス リスト ページを直接開くことでダウンロードできますが、これには多額のリソースがかかりますが、ユーザーを連れてくることはできません。
研究の結果、ソフトウェア チャネルのダウンロードに対するリーチング対策の問題がついに解決しました。コードは配布され、みんなで共有されます。使っていただければ幸いです。
修正された関数は
ソフトウェア情報の場合 ページアドレス: https://www.xxx.net/soft/1.htm
ダウンロードアドレスのリンク: https://www.xxx.net /plus/download.php?.... .....
https://www.xxx.net/soft/1 でない場合は、出所を確認します。 htm、
ソースが https://www.xxx.net/soft/1 の場合、https://www.xxx.net/soft/1.htm に直接ジャンプします。 htm にアクセスすると、ダウンロード アドレスが表示されます
説明 次へ: 以下のコードは自分のサイトから直接コピーしたものです。サイト全体で Thunder ダウンロードを有効にしました。それを開くと、自動的に Thunder ダウンロードが使用されます。 Thunder ダウンロードの使用を防ぐために小さな変更を加えることもできます。
いいえ、Xunlei を使用して変更するのは簡単です。Xunlei 関連のコードを削除し、$link を引用するだけです。
必要なファイル変更されたのは /plus/download.php
デモ:
https://www.xxx.net/do/plus/download.php?open=0&aid=20975&cid=3
https://www.xxx.net/codes/20975.html から開始する必要がありますページに入るのが通常です。
コードは次のとおりです:
<script src="http://pstatic.xunlei.com/js/webThunderDetect.js"></script> <?php require("encode.inc"); ?> <?php require_once(dirname(__FILE__)."/../include/config_base.php"); require_once(dirname(__FILE__)."/../include/inc_channel_unit.php"); if(!isset($open)) $open = 0; if(!isset($aid)) $aid = ""; $dsql = new DedeSql(false); //读取文档基本信息 $arctitle = ""; $arcurl = ""; $gquery = "Select dede_archives.title,dede_archives.senddate,dede_archives.arcrank, dede_archives.ismake,dede_archives.typeid,dede_archives.channel,dede_archives.money, dede_arctype.typedir,dede_arctype.namerule From dede_archives left join dede_arctype on dede_arctype.ID=dede_archives.typeid where dede_archives.ID='$aid' "; $arcRow = $dsql->GetOne($gquery); if(is_array($arcRow)){ $arctitle = $arcRow['title']; $arcurl = GetFileUrl($aid,$arcRow['typeid'],$arcRow['senddate'],$arctitle,$arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money']); }else{ $dsql->Close(); ShowMsg("无法获取未知文档的信息!","-1"); exit(); } $cu = new ChannelUnit($arcRow['channel'],$aid); if(!is_array($cu->ChannelFields)) { $cu->Close(); $dsql->Close(); ShowMsg("获取文档链接信息失败!","-1"); exit(); } $vname = ""; foreach($cu->ChannelFields as $k=>$v){ if($v['type']=="softlinks"){ $vname=$k; break; } } if(!is_array($cu->ChannelFields)) { $cu->Close(); $dsql->Close(); ShowMsg("获取文档链接信息失败!","-1"); exit(); } if(!strstr($_SERVER['HTTP_REFERER'],$arcurl)) { echo "<script language='javascript'>location=\"$arcurl\";</script>"; } $row = $dsql->GetOne("Select $vname From ".$cu->ChannelInfos['addtable']." where aid='$aid'"); $downlinks = $cu->GetAddLinks($row[$vname]); $dsql->Close(); $cu->Close(); $link = base64_decode($link); $thunderUrl = ThunderEncode($link); echo "<script>OnDownloadClick('".$thunderUrl."','',location.href,'07231',2,'')</script>"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title><?php echo $arctitle?>下载地址列表</title> <link href="../templets/style/dede.css" rel="stylesheet" type="text/css" /> <link href="../templets/style/spage.css" rel="stylesheet" type="text/css" /> </head> </head> <body> <center> <div> <span>下载</span> <span><a href="/" _fcksavedurl="/">返回主页</a></span></div> <div> <div> <div>软件名称:<a href='<?php echo $arcurl?>' _fcksavedurl='<?php echo $arcurl?>' style='font-size:11pt'><?php echo $arctitle?></a></div> </div> <div class=""> <div> <div>
ダウンロード アドレスリスト:
<div><a href='<?php echo $thunderUrl?>' _fcksavedurl='<?php echo $thunderUrl?>' style='font-size:11pt'>点这里右键使用迅雷下载-><?php echo $arctitle?></a></div> </div> </div> </div> </div> </center> </body> </html>
補足:
1. このソフトウェア チャネルのアンチリーチ機能はソフトウェアに含まれている必要があります チャネル設定で
リンクの表示方法を設定します: リクエスト
2. 例の状況が Web サイトと異なる場合は、/plus/download .php
変更方法は次のとおりです。
検索:
$row = $dsql->GetOne("Select $vname From ".$cu->ChannelInfos['addtable']." where aid='$aid'");
その上に
if(!strstr($_SERVER['HTTP_REFERER'],$arcurl)) { echo "<script language='javascript'>location=\"$arcurl\";</script>"; }
を追加するだけです。
以上がdedecms ソフトウェア ダウンロード チャネルでのホットリンクを防ぐ方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。