How to prevent hotlink code implementation in PHP

伊谢尔伦
Release: 2016-11-29 09:46:51
Original
1134 people have browsed it

<?php
 
/*
 
使用方法:将上述代码保存为dao4.php,
 
比如测试用的validatecode.rar在站点//m.sbmmt.com里面,
 
则用以下代码表示下载连接.
 
文件名?site=1&file=文件
 
例如以下URL:
 
 

 
*/
 
$ADMIN[&#39;defaulturl&#39;] = "//m.sbmmt.com/404.htm"; //盗链返回的地址
 
$okaysites = array(
 
"//m.sbmmt.com/",
 
"//m.sbmmt.com"
 
); //白名单
 
$ADMIN[&#39;url_1&#39;] = "//m.sbmmt.com/download/"; //下载地点1
 
$ADMIN[&#39;url_2&#39;] = ""; //下载地点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]");
 
}
 
?>
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!