日期:2013-04-20  浏览次数:20496 次

<?php
 
$ADMIN[defaulturl] = "img/no.gif";//盗链返回的地址
$okaysites = array("http://www.5v6.com/","http://t.5v6.com/");  //白名单  
$ADMIN[url_1] = "http://t.5v6.com/";//下载地点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]");
}
 
?>