我想在web.config中将网址http://www.root.com/home重写为http://www.root.com。这是一个MVC5框架。 有人可以帮忙吗?
答案 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>