首页 > 编程 > PHP > 正文

php通过判断来源主机头进行防盗链

2019-11-14 14:47:54
字体:
来源:转载
供稿:网友

check.php

<html><body><form action="test.php" method="post">    message<input type="text" name="name" value="123456" />    <input type="submit" value="submit" /></form></body></html>

test.php

<?phpheader("Content-type:text/html;charset='utf8'");error_reporting(E_ALL);$url = parse_url($_SERVER['HTTP_REFERER']);//PRint_r($url);if($url['host'] != "localhost"){    echo "<script>alert('host error.');history.go(-1);</script>";    exit(0);}else{    echo "<script>alert('host right.');</script>";    echo "<h1>Hello World!</h1>";}

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表