php实现防盗链的代码一例

发布时间:2020-04-24编辑:脚本学堂
为大家介绍一个php实现的防盗链的代码,有需要的朋友,可以参考下。

php防盗链的代码。
 

<?php  
/**
 * php 防盗链
 * by http://www.jb200.com
*/
    $ADMIN[defaulturl] = "test.gif";//盗链返回的地址  
    $okaysites = array("http://www.jb200.com/","http://jb200.com/");  //白名单    
    $ADMIN[url_1] = "http://jb200.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]");  
    }
 ?>

 有兴趣的朋友,还可以参考下之前介绍的 一个php的防盗链代码