如何采用php301跳转防cc

主机教程 建站分享 2年前 (2022-12-02) 232次浏览

文章摘要:如何采用php301跳转防cc

采用php301跳转防cc的示例: 在对应的php文件中添加以下代码: <?php empty($_SE […]

采用php301跳转防cc的示例:

在对应的php文件中添加以下代码:

<?php

empty($_SERVER['HTTP_VIA']) or exit('Access Denied');

$seconds = 10; //时间段[秒]

$refresh = 5; //刷新次数

//设置监控变量

$cur_time = time();

if(isset($_SESSION['last_time'])){

$_SESSION['refresh_times'] += 1;

}else{

$_SESSION['refresh_times'] = 1;

$_SESSION['last_time'] = $cur_time;

}

//处理监控结果

if($cur_time - $_SESSION['last_time'] < $seconds){

if($_SESSION['refresh_times'] >= $refresh){

//301重定向验证

$url='http://&#39;.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];

$msg=mb_convert_encoding("<title>安全检查</title><h3>检测到CC攻击,正在进行浏览器安全检查!</h3>","UTF-8","GBK");

exit($msg."<meta http-equiv='refresh' content='5;url={$url}'>");//5是定时跳转的时间,后期可以根据时间段调整跳转时间

}

}else{

$_SESSION['refresh_times'] = 0;

$_SESSION['last_time'] = $cur_time;

}

?>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:如何采用php301跳转防cc
文章链接:http://www.7966.org/post/15873.html
转载请注明出处

喜欢 (0)