我已将站点配置为使用 SSL,因此我在 web.config 中添加了以下部分
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors>
<error statusCode="403" subStatusCode="4" path="D:\Data\www\Site\403.htm" responseMode="File" />
</httpErrors>
</system.webServer>
</configuration>
一旦我包含它,当我访问http://my-url/pagr/some.aspx时,我收到了The page cannot be displayed because an internal server error has occurred.
消息。如果我删除它,我可以看到默认的 403 错误页面。
我的配置有问题吗?