我正在尝试重写来自/ img / logo.svg的所有请求以转到/ dist / img / logo.svg
有什么想法吗?我敢肯定这很明显。
<rule name="RewriteImgFolder" stopProcessing="true">
<match url="^/img/(.*)" />
<action type="Rewrite" url="/dist/img/{R:1}" />
</rule>
如果您的网址是http://localhost/img/logo.svg
,则您的网址重写规则将无效。
您可以在匹配网址中删除“ /”。