将每个第三个用户重定向到另一个页面

时间:2014-09-13 20:04:18

标签: javascript html load-balancing

我想将我网站的每个第三位用户重定向到另一个页面。 例如在js html

window.location = "http://www.yoururl.com";

这种需求背后的原因是尝试对我的流量进行负载均衡

1 个答案:

答案 0 :(得分:3)

如果不在服务器上包含某种后端代码,则无法实现每个第三个用户。但是重定向大约三分之一的访问者是可能的。

if (Math.random() < 0.333333) window.location = "http://www.yoururl.com";