httphandler程序部署在IIS上webconfig配置方法

For X86 system, add a node for HttpHandler in <system.webServer><handlers>:

<add name="mvc64" path="*" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv2.0,bitness64" />

After add this node, also need do some setting on IIS. Find the application pool which website used, right click the pool name, choice basic settings and select option “Classic” to “managed pipeline mode”.

原文地址:https://www.cnblogs.com/jiajinyi/p/1798858.html