0

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.

rahul
  • 1
  • 1

1 Answers1

0

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

Community
  • 1
  • 1
Hakuna Matata
  • 1,349
  • 3
  • 13
  • 22