原理:必须在你电脑上面安装了alexa工具条,用IE访问时才可以被alexa统计到,否则是不会被统计到的,alexa主要统计的是IP和PV,同一IP在同一天内多次访问同一页面,将被统计一次,也就是PV是1,所以必须多IP,多PV才可以提高排名。网上也有很多作弊的,推荐一些,如
http://autosurf.alexabooster.com/
http://www.menho.com/Index.Asp
http://www.azroo.com/
http://www.googlecn.cn/
http://alexa.baidui.com/
他们的优点是可以相互刷,带来不同的IP,缺点是被刷的页面太少,被刷到的机会太小,每天的PV很难有大的提高。
下面就结合上面的作弊工具和我提供的一些代码,一起使用,来快速提高你的网站的alexa排名
第一步,首先下载安装alexa工具条,如果已经安装了,那跳过这一步即可。如果还没有安装,请下载安装。安装步骤可以参考 http://bbs.sooboo.com.cn/1619/ShowPost.aspx
第二步,确保alexa工具条是可以工作的,xp系统下有的时候alexa工具条不能正常显示,解决办法是安装一个yahoo助手,然后在上网助手中,选择“插件拦截”,打开后,在工具插件中,第一项就是“ALEXA工具条”,选择它,然后在对话框底部,点“允许弹出”。如下图
第三步,建立一个alexa.htm页面,代码如下
<html>
<head>
<title>alexa排名演示</title>
<script language="javascript">
var nInterval;
function chkRefresh()
{
win=window.open("alexa.aspx","mzs","");
nInterval=setInterval("go()",15000);
}
function go()
{
if(win.closed==true){chkStop();}else{
win.location="alexa.aspx";}
}
function chkStop()
{
window.clearInterval(nInterval);
win.close();
}
</script>
</head>
<body>
<input type='button' id='btn' style="width:60px" value="开始刷" onclick="chkRefresh();">
<input type="button" value="停止刷" name="btnStopRefresh" onclick="chkStop();">
</body>
</html>
第四步,建立一个alexa.aspx页面,html代码
<html>
<head>
<title>alexa</title>
</head>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
</form>
<script language="javascript">
//每隔一定时间自动调用该页面,此时该页面用ajax随机调用数据库url,从而实现alexa刷新
//debugger;
var dt = alexa.GetUrl().value.Tables[0];
if (dt.Rows.length > 0)
{
window.location.href=dt.Rows[0].url;
}
</script>
</body>
</html>
cs代码
public class alexa : System.Web.UI.P