我在IIS重写中设置了以下规则,但问题是,如果网址为1998gz,它将被阻止。如何更改规则,以便仅阻止Web扩展名为.gz的页面,以便阻止1998.gz,而不阻止1998gz。
<rule name="Block Zip Request" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAny">
<add input="{REQUEST_URI}" pattern="^(.*).gz$" />
<add input="{HTTP_USER_AGENT}" pattern="Test Certificate Info" />
</conditions >
<action type="AbortRequest" />
</rule>