HTTP 错误 500.22 - Internal Server Error

错误描述

注册httpmodel时候可能会遇到这样的错误

HTTP 错误 500.22 - Internal Server Error

检测到在集成的托管管道模式下不适用的 ASP.NET 设置。

HTTP 错误 500.22 - Internal Server Error_第1张图片

 

解决方案 

方法一:

修改应用程序池托管管道模式至经典模式

方法二:

修改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)