【发布时间】:2015-11-02 21:32:30
【问题描述】:
我们的网站结构如下:
http://localhost/aboutus/default.aspx
当我将以下规则添加到 web.config 时,它将所有 default.aspx 重定向到 /
<rule name="Default Document" stopProcessing="true">
<match url="(.*)default.aspx" />
<action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule>
我只希望这些网址中的两个重定向到 /
http://localhost/default.aspx 重定向到http://localhost/
http://localhost/mobile/default.aspx 重定向到http://localhost/mobile/
你能帮忙吗?提前致谢。
【问题讨论】:
-
有什么建议吗?帮助
标签: c# asp.net redirect web-config