如何在一段时间内(24小时)阻止IP地址

时间:2018-05-31 12:26:36

标签: php wordpress web ip

我有一个网站页面,在访问时,会使用此脚本将您重定向到我网站上的随机图片:

    <script type="text/javascript">
var urls = new Array();
urls[0] = "http://localhost/dir/wp-content/uploads/2018/05/logo.png";
urls[1] = "http://localhost/dir/wp-content/uploads/2018/05/logo2.png";
urls[2] = "http://localhost/dir/wp-content/uploads/2018/05/logo3.png";
var random = Math.floor(Math.random()*urls.length);

window.location = urls[random];

</script>

但是,在此之前我想限制用户,以便他们每天只能通过阻止他们的IP地址访问我的页面一次(24h)。

这是可行的还是有更好的方法?

1 个答案:

答案 0 :(得分:0)

最好对服务器进行限制。例如在PHP $ _SERVER [&#39; REMOTE_ADDR&#39;]中。