我有很奇怪的問題。我正在爲我的應用程序使用IIS 7.0集成模式。 (池是ASP 2.0集成)問題當默認頁面是MainPage.aspx不是Default.aspx
它工作正常,當我輸入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>
部分: \t \t <增值= 「MainPage.aspx」/ > defaultDocument>所以default.aspx應該被清除......當我打開IIS管理器並打開我的網站/默認文檔時,我只在列表中看到MainPage.aspx –
chorpo