默认页面为 MainPage.aspx 而不是 Default.aspx 时出现问题

发布于 2024-12-06 02:53:07 字数 934 浏览 2 评论 0 原文

我有很奇怪的问题。我正在为我的应用程序使用 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> 

I have very strange problem. I'm using IIS 7.0 Integrated mode for my application. (pool is ASP 2.0 integrated)

It's working fine when i type www.xyz.com/MainPage.aspx. But when i used simple www.xyz.com then its not working.

I always get this error

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

I have mapped default document to MainPage.aspx still its not working... I don't have default.aspx page in root. only Mainpage.aspx and I can't change it...

my web.config looks like this (only part of it :):

<configuration>
   <system.webServer>
    <defaultDocument>
        <files>
            <clear />
            <add value="MainPage.aspx" />
        </files>
    </defaultDocument>
   </system.webServer>
</configuration> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悲凉≈ 2024-12-13 02:53:07

检查 web.config 并确保 default.aspx 未列为默认页面之一。回收应用程序池并重新启动 IIS。

<system.webServer>
    <defaultDocument>
        <files>
            <remove value="Default.htm"/>
            <remove value="Default.asp"/>
            <remove value="index.htm"/>
            <remove value="index.html"/>
            <remove value="default.aspx"/>
            <remove value="iisstart.htm"/>
            <add value="MainPage.aspx"/>
        </files>
    </defaultDocument>

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.

<system.webServer>
    <defaultDocument>
        <files>
            <remove value="Default.htm"/>
            <remove value="Default.asp"/>
            <remove value="index.htm"/>
            <remove value="index.html"/>
            <remove value="default.aspx"/>
            <remove value="iisstart.htm"/>
            <add value="MainPage.aspx"/>
        </files>
    </defaultDocument>
无悔心 2024-12-13 02:53:07

您需要通过 MainPage.aspx 作为默认页面="nofollow">IIS文档 工具。您还可以使用 IIS7 web.config。

<configuration>
   <system.webServer>
    <defaultDocument>
        <files>
            <add value="MainPage.aspx" />
        </files>
    </defaultDocument>
   </system.webServer>
</configuration> 

You need to add MainPage.aspx as default page through IIS's document facility. You may also add a default document with IIS7 web.config.

<configuration>
   <system.webServer>
    <defaultDocument>
        <files>
            <add value="MainPage.aspx" />
        </files>
    </defaultDocument>
   </system.webServer>
</configuration> 
一绘本一梦想 2024-12-13 02:53:07

我认为此设置在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文