问题描述:HTTP 错误 500.21 – Internal Server Error
处理程序“ExtensionlessUrlHandler-Integrated-4.0”在其模块列表中有一个错误模块“ManagedPipelineHandler”
问题原因:没有注册asp.net 4.5.2到IIS
解决方法:打开程序-运行-cmd:输入以下命令重新注册IIS
32位的Windows:
运行->cmd cd C:WindowsMicrosoft.NETFrameworkv4.0.30319 aspnet_regiis.exe -i
64位的Windows:
运行->cmd cd C:WindowsMicrosoft.NETFramework64v4.0.30319 aspnet_regiis.exe -i
如果解决问题,可以不看下面,这是解决上面问题后,又出现系统其他问题
解决方法:
cmd(管理员身份) dism /online /enable-feature /featurename:IIS-ISAPIFilter dism /online /enable-feature /featurename:IIS-ISAPIExtensions dism /online /enable-feature /featurename:IIS-NetFxExtensibility45 dism /online /enable-feature /featurename:IIS-ASPNET45
执行截图:
最终可以访问了