简体   繁体   中英

404 - File or directory not found. In umbraco

I got 404 error when i run http://www.judsonsmartliving.org/jordan .

if i use http://www.judsonsmartliving.org/jordan/index.html ,then its working.

I found some solution to resolve this but they are not working for me.

I tried some solutions in webconfig:

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

But after adding these solutions in webconfig i got 505 error.

You can use a default navigation page settings in webconfig like below

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

Ref : Set Default Page in Asp.net

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM