HTTP错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置
Posted ChineseMoonGod
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置相关的知识,希望对你有一定的参考价值。
在这里主要把集成模式改成经典模式
解决方案一:
解决方案二:
修改配置文件web.config
将
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<httpModules>
<add name="MyModule1" type="iis.UrlReWirte"/>
</httpModules>
</system.web>
</configuration>
修改为
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<system.webServer>
<modules>
<add name="MyModule1" type="iis.UrlReWirte"/>
</modules>
</system.webServer>
</configuration>
以上是关于HTTP错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置的主要内容,如果未能解决你的问题,请参考以下文章
如何修复 HTTP 错误 500.22 - 内部服务器错误检测到 ASP.NET 设置不适用于集成托管管道模式
HTTP 错误 500.22 - 内部服务器错误(已检测到不适用于集成托管管道模式的 ASP.NET 设置。)
IISExpress VS.Net 2015 - HTTP 错误 500.22 - 检测到不适用于集成托管管道模式的 ASP.NET 设置
HTTP 错误 500.22 - Internal Server Error
HTTP 错误 500.22 - Internal Server Error
网站HTTP 错误 500.24 - Internal Server Error 检测到在集成的托管管道模式下不适用的 ASP.NET 设置。