如何使用 URLRewrite 在 IIS 中用另一个图像重写一个图像
How to rewrite one image with another in IIS using URLRewrite
这是我的问题,我需要用一张图片重写另一张图片(不要问为什么)。
简单 URL重写规则不起作用。
每次有人取这个 URL:http://example.com/images/001.jpg
IIS 应该显示 002.jpg (http://example.com/images/002.jpg)
web.config:
<rules>
<rule name="img1" stopProcessing="true">
<match url="images/001.jpg" />
<action type="Rewrite" url="images/002.jpg" appendQueryString="false" />
</rule>
</rules>
我测试了你的 URL 重写规则,它在我这边正常工作。
所以请尝试清除浏览器的缓存并重试。
你有没有发现任何错误?如果没有,只能使用FRT查看详细消息。
这是我的问题,我需要用一张图片重写另一张图片(不要问为什么)。 简单 URL重写规则不起作用。
每次有人取这个 URL:http://example.com/images/001.jpg IIS 应该显示 002.jpg (http://example.com/images/002.jpg)
web.config:
<rules>
<rule name="img1" stopProcessing="true">
<match url="images/001.jpg" />
<action type="Rewrite" url="images/002.jpg" appendQueryString="false" />
</rule>
</rules>
我测试了你的 URL 重写规则,它在我这边正常工作。
所以请尝试清除浏览器的缓存并重试。
你有没有发现任何错误?如果没有,只能使用FRT查看详细消息。