是否可以使用 url 重写在 url 中添加一个段,例如:添加版本号
例如,原始输入 url 应该类似于: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>