HTTP 错误 500.19 - Internal Server Error
无法访问请求的页面,因为该页的相关配置数据无效。

详细错误信息:模块IIS Web Core请求的 URLhttp://localhost:80通知BeginRequest物理路径E:\Documents\source\处理程序尚未确定登录方法尚未确定错误代码0x80070021登录用户尚未确定配置错误不能在此路径中使用此配置节。如果在父级别上锁定了该节,便会出现这种情况。锁定是默认设置的(overrideModeDefault="Deny"),或者是通过包含 overrideMode="Deny" 或旧有的 allowOverride="false" 的位置标记明确设置的。配置文件\?\E:\Documents\source\web.config
配置源:109:<system.webServer>110:<handlers>111:<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
解决办法:打开配置文件 C:\Windows\System32\inetsrv\Config\applicationHost.config找到出错的 section,在本例中是 <handlers>修改 <section name="handlers" overrideModeDefault="Deny" /> 为 <section name="handlers" overrideModeDefault="Allow" />