【发布时间】:2012-12-08 06:09:19
【问题描述】:
我在 webconfig 中编写了这条规则,以将 thsi 文件夹中的所有资源重定向到我的 azure blob,但那里没有显示任何图像。
<rule name="RewriteIncomingCdnRequest" stopProcessing="true">
<match url="^/CDN/(.*)$" ignoreCase="false"/>
<action type="Redirect" redirectType="Permanent" url="https://stplatformstorage.blob.core.windows.net/static/{R:0}" />
</rule>
http://sttest.azurewebsites.net/CDN/image_cdn-trans.png 这应该重定向到天蓝色存储......
存储上的图像 url https://stplatformstorage.blob.core.windows.net/static/image_cdn-trans.png
【问题讨论】:
标签: redirect azure azure-blob-storage