码迷,mamicode.com
首页 > Web开发 > 详细

防盗链的PHP代码

时间:2014-08-27 10:40:57      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   使用   io   文件   ar   div   代码   

<?php
/*
使用方法:将上述代码保存为dao4.php,
比如测试用的validatecode.rar在站点http://www.niuzen.com里面,
则用以下代码表示下载连接.
文件名?site=1&file=文件  
例如以下URL.复制到你的站点下试试
http://www.coolcodes.cn/dao4.php?site=1&file=validatecode.rar 
以上代码测试可用
*/
$ADMIN[defaulturl] = "http://www.163.com/404.htm";//盗链返回的地址
$okaysites = array("http://www.163.com/","http://163.com"); //白名单 
$ADMIN[url_1] = "http://www.163.com/download/";//下载地点1
$ADMIN[url_2] = "";//下载地点2,以此类推
 
$reffer = $HTTP_REFERER;
if($reffer) {
$yes = 0;
while(list($domain, $subarray) = each($okaysites)) {
if (ereg($subarray,"$reffer")) {
$yes = 1;
}
}
$theu = "url"."_"."$site";
if ($ADMIN[$theu] AND $yes == 1) {
header("Location: $ADMIN[$theu]/$file");
} else {
header("Location: $ADMIN[defaulturl]");
}
} else {
header("Location: $ADMIN[defaulturl]");
}
 
?>

  详细说明:http://php.662p.com/thread-456-1-1.html

防盗链的PHP代码

标签:des   blog   http   使用   io   文件   ar   div   代码   

原文地址:http://www.cnblogs.com/chenniuyi/p/3938768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!