我在这里浏览了很多类似的问题,但大多数都有与之相关的复杂参数。我只是想在同一个域上将一个链接重定向到另一个链接。 to和from链接非常具体,所以我不需要考虑任何通配符。
在web.config中,301重定向/ locations / 100-denver到/ locations / denver的适当方法是什么?
答案 0 :(得分:0)
<configuration>
<system.webServer>
<rewrite>
<rewriteMaps>
<rewriteMap name="Redirects">
<add key="/test.aspx" value="/test2.aspx" />
<add key="/aboutus.aspx" value="/about" />
</rewriteMap>
</rewriteMaps>
</rewrite>
</system.webServer>
</configuration>
我刚刚研究了一个类似的主题,并在另一页上找到了这个答案:enter link description here