将URL http:// Root / Home重写为http:// MVC中的Root

时间:2017-05-13 05:54:05

标签: url url-rewriting

我想在web.config中将网址http://www.root.com/home重写为http://www.root.com。这是一个MVC5框架。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

试试这个

<rule name="Redirect"  enabled="true" stopProcessing="true">
    <match url="^(.*)$"/>
          <conditions logicalGrouping="MatchAll">
            <add input="{PATH_INFO}"  pattern="^/home$"  />
          </conditions>
          <action type="Rewrite" url="http://www.root.com" redirectType="Permanent" appendQueryString="false"/>
</rule>