谁能告诉我,如何在 asp.net 4.0 中重定向 url,我有一个基于 http 的 url,起始页调用 Home.aspx 在目录内。我只想使用 domainname.com 。请建议我如何处理这个问题。
问问题
327 次
1 回答
0
您不需要为此重写 URL。
Administrative Tools -> IIS Manager -> You server name -> Your site name -> Under HTTP features -> Default document -> Add "Home.aspx"
或通过 Web.config
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="Home.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
于 2013-04-15T06:35:41.853 回答