我很可能会遗漏一些东西。我在这篇精彩的帖子中找到了这个网址重写示例:http://marisks.net/2017/05/14/changing-static-resource-urls-to-cdn-urls-with-url-rewrite/
我的设置完全相同。我的代码中有相对的URL,我想在其中重写它们以指向我的CDN。
<outboundRules>
<clear />
<rule name="CDN" preCondition="CheckHTML" enabled="false" stopProcessing="true">
<match filterByTags="Img, Link, Script, CustomTags" customTags="Video" pattern="(^(?!www\.|(?:http|ftp)s?:\/\/|[A-Za-z]:\\|\/\/).*\.(jpg|jpeg|png|js|css|mp4).*)" />
<action type="Rewrite" value="http://cdn.example.com{R:1}" />
<conditions logicalGrouping="MatchAll">
</conditions>
</rule>
<preConditions>
<preCondition name="CheckHTML">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
<customTags>
<tags name="Video">
<tag name="source" attribute="src" />
</tags>
</customTags>
</outboundRules>
这很有效。 除了我需要微调重写到特定文件夹。 我知道这听起来很简单,但是当我在上面的脚本中查看正则表达式时 - 我没有看到我可以对我的相对URL中的具体单词施加任何形式的限制。显然我需要在Regex上更加努力。但任何帮助都表示赞赏。
我只需捕获某些文件夹的相关链接,例如/ media或/ css(“/ media / media.mp4”或“/css/base.css”)。
答案 0 :(得分:0)
我相信我已经解决了这个问题。至少,它适用于我设置为重写的文件夹,并忽略我未指定的文件夹。我会做更多的测试,但现在可以使用。
<rule name="CDN" preCondition="CheckHTML" enabled="true" stopProcessing="true">
<match filterByTags="Img, Link, Script, CustomTags" customTags="Video" pattern="(^(\/(media|css)+)*\/.*)" />
<action type="Rewrite" value="http://cdn.example.com{R:0}" />
<conditions logicalGrouping="MatchAll">
</conditions>
</rule>
前提条件和标签始终相同。
更新了Regex:
(^\/media\/.*)|(^\/css\/.*)