我有一个使用.NET Framework 4.7.1的应用程序,其中定义了WebAPI和MVC路由。它们都在使用IISExpress进行本地调试时工作,但是当我部署到开发服务器(带有IIS 8.5的Windows Server 2012R2)时,我得到的是每个路由的404.0错误。我已经在我的IIS应用程序的根文件夹中放置了一个静态test.aspx文件,并且该文件正确返回,因此看起来IIS似乎没有选择路由。我已经尝试过阳光下的一切,我可以谷歌,没有任何东西可以解决它。
这是我的RouteConfig.cs代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
这是我的WebApiConfig.cs代码:
using System.Web.Http;
using System.Net.Http.Formatting;
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API routes
config.MapHttpAttributeRoutes();
config.Routes.IgnoreRoute("axd", "{resource}.axd/{*pathInfo}");
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
config.Formatters.Clear();
config.Formatters.Add(new JsonMediaTypeFormatter());
// configure additional webapi settings here..
}
}
我的Web.config包含以下内容:
<modules runAllManagedModulesForAllRequests="true"/>
<!-- Show detailed error messages -->
<httpErrors errorMode="Detailed" />
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*"
type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
我已经检查过并且在服务器上安装了.NET Framework 4.7.1。任何帮助将不胜感激。