404エラーのカスタムリダイレクトページを作成しようとしています。現時点では、おそらくホストサーバーとは異なるエラーページがあります。私のweb.configファイルは以下のとおりです。 customErrorタグをコメントアウトすると、ホストサーバーのデフォルトページが表示されます。これをカスタムページ "404.html"に変更します。これをコメントアウトすると、おそらくデフォルトを上書きしようとしますが、内部サーバーのエラーが発生します!! 404宣言はのcustomErrorsタグには行かない404リダイレクトページをデフォルトページからカスタムページに変更します。
<?xml version="1.0" encoding="UTF-8"?>
Please refer to machine.config.comments for a description and
the default values of each configuration section.
For a full documentation of the schema please refer to
http://go.microsoft.com/fwlink/?LinkId=42127
To improve performance, machine.config should contain only those
settings that differ from their defaults.
<configuration>
<system.webServer>
<customErrors mode="On">
<error statusCode="404" redirect="/404.html" />
</customErrors>
<!--<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" path="/404.html" responseMode="ExecuteURL" />
</httpErrors>-->
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
統合/パイプラインモードのものですか? – nikhil