1.簡單防盜鏈
複製程式碼 程式碼如下:
$ADMIN[defaulturl] = "http://jb51. net/404.htm";//盜鏈回傳的位址
$okaysites = array("http://jb51.net/","http://www.jb51.net"); //白名單
$ADMIN[url_1] = "http://jb51.net/temp/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]");
}
?>
複製程式碼 程式碼如下:
程式碼如下:
//放置下載軟體的根目錄相對於目前腳本目錄的相對目錄
$fileRelPath = "../../software";
//例外允許連線的網址,注意:本身網域不需要填入,設定為肯定可以下載,
// 空字串("")表示直接輸入網址下載的情況
$excludeReferArr = array("www.wjb51.net", "wjb51.net ");
chdir($fileRelPath);
$fileRootPath = getcwd() ."/";
$filePath=$HTTP_GET_VARS["file"];
if($url[host]!=$_SERVER["HTTP_HOST"] && !in_array($referHost, $excludeReferArr)){
?> 以上就介紹了防盜 php防盜鏈的常用方法小結,包括了防盜方面的內容,希望對PHP教程有興趣的朋友有所幫助。