我想创建两个IIS重写规则,这样规则A将在50%的请求上运行,B在另外50%上运行。 IIS重写模块AFAIK中没有内置随机属性。我想在不开发自己的重写模块扩展的情况下实现它。
我更喜欢随机变为“真实”(当然,伪随机算法可以是随机的)。
我想到了两种可能性:
其中一种选择是否可行?如何使用重写规则实现它们?有更好的解决方案吗?
答案 0 :(得分:1)
看起来REMOTE_ADDR
选项是可行的:
<!-- Condition for even IPs (50% connections) -->
<add input="{REMOTE_ADDR}" pattern=".+[02468]$"/>
<!-- Condition for odd IPs (the other 50% connections): -->
<add input="{REMOTE_ADDR}" pattern=".+[13579]$"/>
您可以通过更改模式轻松将其设为30/70或10/90。
以随机方式设置cookie的示例配置:
<rewrite>
<outboundRules>
<rule name="set new=1 on half the requests" preCondition="new-cookie-is-not-set">
<match pattern=".*" serverVariable="RESPONSE_Set_Cookie"/>
<conditions trackAllCaptures="false">
<add input="{REMOTE_ADDR}" pattern=".+[02468]$"/>
</conditions>
<action type="Rewrite" value="new=1; Expires=Fri, 26 Apr 2020 00:00:00 GMT; HttpOnly"/>
</rule>
<rule name="set new=0 on the other half" preCondition="new-cookie-is-not-set">
<match pattern=".*" serverVariable="RESPONSE_Set_Cookie"/>
<conditions trackAllCaptures="false">
<add input="{REMOTE_ADDR}" pattern=".+[13579]$"/>
</conditions>
<action type="Rewrite" value="new=0; Expires=Fri, 26 Apr 2020 00:00:00 GMT; HttpOnly"/>
</rule>
<preConditions>
<preCondition name="new-cookie-is-not-set">
<add input="{HTTP_COOKIE}" negate="true" pattern="new=[01]"/>
</preCondition>
</preConditions>
</outboundRules>
</rewrite>