默认页面为 MainPage.aspx 而不是 Default.aspx 时出现问题
我有很奇怪的问题。我正在为我的应用程序使用 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查 web.config 并确保 default.aspx 未列为默认页面之一。回收应用程序池并重新启动 IIS。
Check you web.config and make sure the default.aspx is not listed as one the default pages. Recycle the app pool and restart IIS.
您需要通过 MainPage.aspx 作为默认页面="nofollow">IIS 的
文档
工具。您还可以使用 IIS7 web.config。You need to add
MainPage.aspx
as default page through IIS'sdocument
facility. You may also add a default document with IIS7 web.config.我认为此设置在 IIS7 中被锁定在 applicationHost.config 级别。您必须更改根配置 gile 或使用 IIS Administration API 来完成此任务。
I think this setting is locked in IIS7 on applicationHost.config level. You have to change the root config gile or use IIS Administration API do complete this task.