在空間根目錄下新建web.config文件,根據(jù)您把需要的返回錯誤,選擇以下代碼。
1、返回“自定義錯誤錯誤頁”,新建web.config文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Custom" />
</system.webServer>
</configuration>
2、返回“詳細(xì)錯誤”,新建web.config文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
</system.webServer>
</configuration>
3、返回“本地請求的詳細(xì)錯誤和遠(yuǎn)程請求的自定義錯誤頁”,新建web.config文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="DetailedLocalOnly" />
</system.webServer>
</configuration>