HTTP 错误 500.22 - Internal Server Error
Posted xiaoshi657
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP 错误 500.22 - Internal Server Error相关的知识,希望对你有一定的参考价值。
错误描述
注册httpmodel时候可能会遇到这样的错误
HTTP 错误 500.22 - Internal Server Error
检测到在集成的托管管道模式下不适用的 ASP.NET 设置。
解决方案
方法一:
修改应用程序池托管管道模式至经典模式
方法二:
修改web.config
<httpModules> <add type="wqcms.URLRewriter.ModuleRewriter, wqcms_URLRewriter" name="ModuleRewriter" /> </httpModules> <httpHandlers> </httpHandlers> </system.web>
修改为:
<system.webServer> <modules> <add type="wqcms.URLRewriter.ModuleRewriter, wqcms_URLRewriter" name="ModuleRewriter" /> </modules> </system.webServer> </configuration>
以上是关于HTTP 错误 500.22 - Internal Server Error的主要内容,如果未能解决你的问题,请参考以下文章