HTTP 错误 500.22 - Internal Server Error
Posted Rocken.li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP 错误 500.22 - Internal Server Error相关的知识,希望对你有一定的参考价值。
HTTP 错误 500.22 - Internal Server Error
检测到在集成的托管管道模式下不适用的 ASP.NET 设置。
解决办法:
方法一:修改应用程序池托管管道模式至经典模式
方法二,修改web.config
<httpModules>
<add type="URLRewriter.RewriterModule, URLRewriter" name="RewriterModule"/>
</httpModules>
<httpHandlers>
</httpHandlers>
</system.web>
修改为
<system.webServer>
<modules>
<add type="URLRewriter.RewriterModule, URLRewriter" name="RewriterModule"/>
</modules>
</system.webServer>
</configuration>
以上是关于HTTP 错误 500.22 - Internal Server Error的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET 网站迁移 HTTP 错误 500.22 - Internal Server Error 检测到在集成的托管管道模式下不适用
试图实施 ELMAH - 不断收到 IIS HTTP 500.22 错误
如何修复 HTTP 错误 500.22 - 内部服务器错误检测到 ASP.NET 设置不适用于集成托管管道模式
HTTP 错误 500.22 - 内部服务器错误(已检测到不适用于集成托管管道模式的 ASP.NET 设置。)
IISExpress VS.Net 2015 - HTTP 错误 500.22 - 检测到不适用于集成托管管道模式的 ASP.NET 设置