我想将我网站的每个第三位用户重定向到另一个页面。 例如在js html
中window.location = "http://www.yoururl.com";
这种需求背后的原因是尝试对我的流量进行负载均衡
答案 0 :(得分:3)
如果不在服务器上包含某种后端代码,则无法实现每个第三个用户。但是重定向大约三分之一的访问者是可能的。
if (Math.random() < 0.333333) window.location = "http://www.yoururl.com";