我有一个网站页面,在访问时,会使用此脚本将您重定向到我网站上的随机图片:
<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)。
这是可行的还是有更好的方法?
答案 0 :(得分:0)
最好对服务器进行限制。例如在PHP $ _SERVER [&#39; REMOTE_ADDR&#39;]中。