0

运行http://www.judsonsmartliving.org/jordan时出现 404 错误。

如果我使用http://www.judsonsmartliving.org/jordan/index.html,那么它的工作。

我找到了一些解决方案来解决这个问题,但它们对我不起作用。

我在 webconfig 中尝试了一些解决方案:

  1)<httpErrors existingResponse="PassThrough" />
  2)<location path="Site Description">
  <system.webServer>
  <httpErrors existingResponse="PassThrough" />
  </system.webServer>
  </location>

但是在 webconfig 中添加这些解决方案后,我得到了 505 错误。

4

1 回答 1

0

您可以在 webconfig 中使用默认导航页面设置,如下所示

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

参考:在 Asp.net 中设置默认页面

于 2013-06-13T09:51:47.390 回答