子目录的子目录UrlRewrite with filename

问题描述 投票:0回答:1

我正在尝试重写来自/ img / logo.svg的所有请求以转到/ dist / img / logo.svg

有什么想法吗?我敢肯定这很明显。

    <rule name="RewriteImgFolder" stopProcessing="true">
      <match url="^/img/(.*)" />
      <action type="Rewrite" url="/dist/img/{R:1}" />
    </rule>
iis url-rewriting web-config url-rewrite-module
1个回答
0
投票

如果您的网址是http://localhost/img/logo.svg,则您的网址重写规则将无效。

您可以在匹配网址中删除“ /”。

© www.soinside.com 2019 - 2024. All rights reserved.