关于此消息错误有很多问题,我尝试了所有提议的解决方案,但没有一个工作
我有一个ASP .NET webapp,我将应用程序注册到IIS,当我访问该页面时出现此错误:
HTTP错误500.19内部服务器错误请求的页面不能 访问,因为页面的相关配置数据是 无效
错误代码是:0x8007000d
我发布了我的web.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\ReviewerServices.web.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="true" />
</system.webServer>
</configuration>
这是我试过的:
答案 0 :(得分:1)