我有一个很奇怪的问题。我正在为我的应用程序使用 IIS 7.0 集成模式。(池是 ASP 2.0 集成的)
当我输入 www.xyz.com/MainPage.aspx 时它工作正常。但是当我使用简单的 www.xyz.com 时,它就不起作用了。
我总是收到这个错误
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /intranet/default.aspx
我已将默认文档映射到 MainPage.aspx 仍然无法正常工作...我在根目录中没有 default.aspx 页面。只有Mainpage.aspx,我不能改变它......
我的 web.config 看起来像这样(只是其中的一部分 :):
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="MainPage.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>