在Windows 10上访问IIS中的MVC 6应用程序时收到HTTP错误500.19。
在IIS中,我将应用程序池设置为“无托管代码”
该应用程序托管在新网站的根目录中。
我使用Visual Studio 2015使用以下设置发布了应用程序。
配置:调试 目标DNX版本:dnx-clr-win-x64.1.0.0-rc1-update1
web.config是Visual Studio提供的样板
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified"/>
</handlers>
<httpPlatform processPath="%DNX_PATH%" arguments="%DNX_ARGS%" stdoutLogEnabled="false" startupTimeLimit="3600"/>
</system.webServer>
</configuration>
任何想法出了什么问题?
由于
麦克
答案 0 :(得分:18)
答案 1 :(得分:6)
想出来,我需要安装httpplatformhandler http://www.iis.net/downloads/microsoft/httpplatformhandler
答案 2 :(得分:1)
您必须安装&#34; Hosting Bundle Installer&#34;。如果没有这个,IIS就无法理解路由,也无法托管您的应用程序。
转到微软网站&#34; https://www.microsoft.com/net/download/dotnet-core/runtime-2.1.0-rc1&#34;并安装&#34; Hosting Bundle Installer&#34;:
在安装之前,您必须安装正确版本的运行时: https://www.microsoft.com/net/download/dotnet-core/runtime-2.1.0-rc1 比安装正确版本的&#34; Hosting Bundle Installer&#34;。
&#34;托管捆绑安装程序&#34;是: .NET Core Windows Server Hosting包安装.NET Core Runtime,.NET Core Library, 和ASP.NET核心模块。该模块在Windows平台上的IIS和Kestrel服务器之间创建反向代理。