使用IIS URL重写添加URL段

时间:2012-09-24 12:31:43

标签: iis url-rewriting web-config

是否可以使用网址重写在网址中添加细分,例如:添加版本号

例如,原始输入网址应为:http://host.com/**v2**/categories/5,我希望将其重写为http://host.com/categories/5

我们有一个额外的重写规则来将.svc段添加到url中,因此web.config重写部分看起来像这样:

<rewrite>
      <rules>
        <rule name="Remove version segment from the Url" stopProcessing="false">
          <match url="^v2(.*)$" />
          <action type="Rewrite" url="{R:0}" appendQueryString="true" />
        </rule>
        <rule name="Add ServiceHost.svc to the Url" stopProcessing="false">
          <match url="^(.*)$" />
          <action type="Rewrite" url="ServiceHost.svc/{R:0}" appendQueryString="true" />
        </rule>
      </rules>
    </rewrite>

0 个答案:

没有答案