帮满看一串PHP代码,如何实现禁止的IP显示网页内容
发布网友
发布时间:2022-04-06 03:42
我来回答
共3个回答
热心网友
时间:2022-04-06 05:11
if (in_array($ip, $blacklist)){ //阻止黑名单中的IP访问
header('HTTP/1.0 403 Forbidden');
echo "禁止访问";
exit;
}
热心网友
时间:2022-04-06 06:29
其他不变,注意看if
if (in_array($ip, $blacklist)){ //阻止黑名单中的IP访问
echo ' <script>alert('禁止内空,请返回!');windos.history.back()</script>';
exit;
}
热心网友
时间:2022-04-06 08:04
<?php
$ip = $_SERVER['REMOTE_ADDR']; //访问者IP
$blacklist = array();
$file = dirname(__FILE__)."/black.list"; //黑名单
require_once($file);
if (in_array($ip, $blacklist)){ //阻止黑名单中的IP访问
//在这家句话。
echo "你是禁止的ip";
header('HTTP/1.0 404 Not Found');
exit;
}
?>
可以吗,加分啊