2
我已經在webconfig中編寫了此規則,將thsi文件夾中的所有資源重定向到我的azure blob,但它沒有在那裏顯示任何圖像。在存儲將目錄重定向到Azure url
<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 這應該重定向到Azure存儲....
圖像URL https://stplatformstorage.blob.core.windows.net/static/image_cdn-trans.png
似乎在我的工作。 http://sttest.azurewebsites.net/CDN/image_cdn-trans.png將我重定向到http://stplatformstorage.blob.core.windows.net/static/image_cdn-trans.png – BStateham