拆分重定向,一半不执行任何操作,一半重定向

时间:2019-05-27 11:22:10

标签: redirect

我正在进行A / B测试,因此我使用了分割随机重定向。 我不想使用桥接页面,所以我想将一半的流量从“ A”页面重定向到“ B”页面。

为此,我认为我应该使用包含“自我”或“不执行任何操作”功能的拆分重定向代码

这是我当前的代码

    <html>
    <head>
    <script type="text/javascript">
    <!--
    // Dividi la totalità del traffico per il numero di array (es. 100/3 o 100/4, a seconda del numero di links[X]. La seguente impostazione è per avere 66 e 33 )
    var links = new Array();
    links[0] = "URL DEL FORM A";
    links[1] = "URL DEL FORM A";
    links[2] = "URL DEL FORM B";

    function openLink() {
      // Chooses a random link:
      var i = Math.floor(Math.random() * links.length);
      // Directs the browser to the chosen target:
      parent.location = links[i];
      return false;
    }
    //-->
    </script>
    </head>
    <body onload="openLink();">
    </body>
    </html>

感谢帮助

0 个答案:

没有答案