利用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)
上一篇:五大“吸毒式”网站推广方法
下一篇:从网站推广途径分析友情链接篇
- 最新评论