私はウェブサイト hh-alrawi.com を持っています。問題は、サイトを公開するたびにメイン ページ (Index.aspx) が表示されないことです。正しいサイト URL はhttp://www.hh-alrawi.com/indexです。 .aspx、ドメイン名の後にメインページ名 (Index.aspx) を常に URL の後に配置するにはどうすればよいのでしょうか。Web 構成を編集しようとしましたが、機能しません。Web 構成:
<configuration>
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.0"/>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<customErrors mode="On" defaultRedirect="Index.aspx">
<error statusCode="404" redirect="Index.aspx" />
</customErrors>
</system.web>
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="Index.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
私が言っていることを理解するためにサイトをチェックしてください:)、あなたの時間のためにThnx