<?php
/*
使用方法:将上述代码保存为dao4.php,
比如测试用的validatecode.rar在站点http://www.php.cn里面,
则用以下代码表示下载连接.
文件名?site=1&file=文件
例如以下URL:
*/
$ADMIN['defaulturl'] = "http://www.php.cn/404.htm"; //盗链返回的地址
$okaysites = array(
"http://www.php.cn/",
"http://php.cn"
); //白名单
$ADMIN['url_1'] = "http://www.php.cn/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]");
}
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号