我的html响应中有类似的内容:
<img
src="http://www.test.com/image1.jpg"
srcset="http://www.test.com/image1-300x200.jpg 300w, http://www.test.com/image1.jpg 600w" sizes="(max-width: 600px) 100vw, 600px" />
我想使用IIS出站重写规则用www.foo.com替换所有对www.test.com的引用。如果属性(在本例中为srcset
)具有多个URL实例,我该怎么做?
这是我的规则目前的样子:
<outboundRules>
<rule name="Blog Paths" preCondition="IsBlog">
<match filterByTags="Img, CustomTags" customTags="BlogTags" pattern="^http://www.test.com(.*)$" />
<action type="Rewrite" value="http://www.foo.com{R:1}" />
</rule>
<preConditions>
<preCondition name="IsBlog">
<add input="{RESPONSE_Content_Type}" pattern="^text/html" />
<add input="{RESPONSE_X_Content_Source}" pattern="^blog" />
</preCondition>
</preConditions>
<customTags>
<tags name="BlogTags">
<tag name="img" attribute="srcset" />
</tags>
</customTags>
</outboundRules>
但当然只有每个属性中的第一个URL被覆盖:
<img
src="http://www.foo.com/image1.jpg"
srcset="http://www.foo.com/image1-300x200.jpg 300w, http://www.test.com/image1.jpg 600w" sizes="(max-width: 600px) 100vw, 600px" />
如何将www.test.com
的所有实例重写为www.foo.com
?
答案 0 :(得分:1)
按如下方式更改规则:
<match filterByTags="Img, CustomTags" customTags="BlogTags" pattern="(.*)http://www.test.com(.*)" />
<action type="Rewrite" value="{R:1}http://www.foo.com{R:2}" />