IIS将.jpg重写为.ashx

时间:2018-03-09 22:46:15

标签: asp.net iis url-rewrite-module

1 个答案:

答案 0 :(得分:0)

你的重写应该是:

<rule name="image.jpg rewrite" stopProcessing="true">
    <match url="^image.jpg$" />
    <action type="Rewrite" url="/image.ashx" />
</rule>

此部分^image.jpg$将仅匹配对image.jpg的所有请求

此部分<action type="Rewrite" url="/image.ashx" />会将其重写为image.ashx。

您不需要使用{R:1},因为默认情况下,重写模块会将所有查询字符串附加到默认重写。