带有统计功能的跳转代码分享
使用方法:可以直接保存成HTML格式的代码,或者<script></script>中间部分保存成JS文件。测试都可以正常使用。
拓展:这个可以配合蜘蛛劫持的代码,只让用户访问的时候产生跳转。蜘蛛访问的时候不进行跳转。非常完美的组合。
不懂的朋友可以在下边留言,或者联系我的QQ。欢迎讨论。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>正在跳转,请稍等...</title>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "你的统计代码";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
setTimeout(function(){location.replace("http://www.yinhuiseo.com");},1000);
</script>
</head>
<body></body>
</html>