快捷搜索:   服务器  PHP  安全  linux 安全  IIS

利用JS代码屏蔽英文站的中国IP访问

很简单的一个方式,判断浏览器语言,是中文的就转向
<script language="javascript">
<!--
  var t=navigator.userLanguage
  if (t=="zh-cn" || t=="zh-tw" || t=="zh-hk" || t=="zh-mo")
  {
     location.replace("http://www.xxxx.cn/");
  }
  else
  {
     location.replace("http://www.xxx.com/");
  }
-->
</script>
另外还可以通过写.htaccess来屏蔽IP,不过因为IP地址经常在变,所以这个方法,容易误封IP或产生漏网之鱼

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论