Forum Moderators: Robert Charlton & goodroi
1. What is a proper way to do an a/b test so that our google ranking won’t fall?
2. Should I add a no index meta tag for the test page?
3. Will my ranking fall if I do add the no index meta tag on test page?
With any split test, if organic ranking for that page is also important (as it might well be with a home page) then even after you promote it to "regular page" status, you still have a final step of monitoring the rankings for the new version.
This is the script that we are using for the a/b test.
<script runat="server">
protected override void Page_Load(object sender, EventArgs e){
ABTestMgr.execute(HttpContext.Current);
if (ABTestMgr.ABTestCode=="B"){
Response.Redirect("default-3.aspx"+Request.Url.Query);
}
base.Page_Load(sender,e);
if (!IsPostBack){
this.savePageTrackCookie("HOME",0);
}
}
</script>