MVC5应用程序无法在IIS 7中运行 - 错误404 - 找不到文件或目录

时间:2015-05-27 18:36:46

标签: iis-7 asp.net-mvc-5

有!

经过一段时间的到来,我终于得到了我的第一个MVC应用程序在我的开发机器上运行。

方案如下:

  • 它是一个Intranet应用程序(因此我使用的是Windows身份验证)
  • 这是一个MVC 5应用程序(使用Bootstrap和jQuery的东西 - 没有.aspx页面)
  • 实体框架6(代码优先)
  • SQL Server Compact Edition
  • VS 2013 Express Edition
  • 服务器:运行IIS 7的Windows 2008 R2
  • 已安装修补程序KB980368
  • 使用asp.net注册的IIS(命令aspnet_regiis.exe -i ran)

我在服务器上有一些管理权限,所以我创建了一个文件夹来保存应用程序。然后,使用VS2013,我根据以下配置发布了应用程序:

  • 发布方法:文件系统
  • 目标位置:在服务器上创建的文件夹
  • 配置:发布
  • 数据库:此发布方法不支持数据库发布

服务器上的目标已填充以下文件夹:

  • bin(System.Web.MVC,System.Web.Razor等)
  • 内容
  • 字体
  • 脚本
  • 浏览

以及以下文件:

  • Global.asax
  • packages.config
  • web.config

在IIS 7中,我添加了一个虚拟目录,其物理路径指向先前创建的该文件夹。之后我将虚拟目录转换为Application。

试图运行应用程序并得到一个奇怪的startIndex错误。然后我注意到没有创建App_Data文件夹。所以我更正了,重新运行应用程序,此时创建数据库并正确执行默认路由,呈现主视图。

应用程序中的所有视图都基于此_Layout.cshtml,其中有一个导航栏,其中包含一些导航链接和下拉菜单。其中一个是链接到联系人视图的简单元素:

<a href="/Home/Contact">Contact</a>

好吧,当我点击这个元素时,我得到一个 404 - 找不到文件或目录错误。所有其他链接都是如此。我试图在浏览器的地址栏中显式写入路由,并呈现Contact视图。当然,用户不应该知道如何编写路线。为此,我们创建 navbars ,链接等。

然后我开始 google 来解决这个问题,从那以后我读了数百篇文章,帖子,页面......其中很多人都提到这个问题会简单解决web.config上的几行,如this one。我试过了。没工作。

因此,在IIS 7中,配置如下:

  • 应用程序池:框架:v4.0.30319,托管管道:集成,标识:ApplicationPoolApplication
  • .NET授权规则:允许所有用户
  • .NET信任级别:完整(内部)
  • 应用程序设置: ClientValidationEnabled :true, UnobtrusiveJavaScriptEnabled :true,网页:已启用:false,网页:版本:3.0.0.0
  • 连接字符串: DbControleDeAcesso :数据源= | DataDirectory | \ ControleDeAcesso.sdf; DbOrcamento :数据源= |数据目录| \ Orcamento.sdf
  • 身份验证:匿名身份验证:已禁用, ASP.NET模拟:已禁用,表单身份验证:已禁用, Windows身份验证:已启用
  • 处理程序映射
    • ExtensiolessUrlHandler集成-4.0
      • 路径:*。
      • 状态:已启用
      • 路径类型:未指定
      • 处理程序:System.Web.Handlers.TransferRequestHandler
      • 条目类型:本地
    • ExtensiolessUrlHandler-ISAP-4.0_32bit / 64位
      • 路径:*。
      • 状态:已启用
      • 路径类型:未指定
      • 处理程序:IsapiModule
      • 条目类型:继承
  • 模块
    • UrlRoutingModule-4.0
      • 代码:System.Web.RoutingModule
      • 模块类型:托管
      • 条目类型:本地

Bellow我出示 web.config 文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  </appSettings>
  <system.web>
    <compilation defaultLanguage="vb" targetFramework="4.5.1" />
    <httpRuntime targetFramework="4.5.1" />
  </system.web>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
      <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-5.2.2.0" newVersion="5.2.2.0" />
    </dependentAssembly>
  </assemblyBinding>
  </runtime>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlCeConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="System.Data.SqlServerCe.4.0" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlServerCe.4.0" type="System.Data.Entity.SqlServerCompact.SqlCeProviderServices, EntityFramework.SqlServerCompact" />
    </providers>
  </entityFramework>
  <system.data>
     <DbProviderFactories>
       <remove invariant="System.Data.SqlServerCe.4.0" />
       <add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
     </DbProviderFactories>
  </system.data>
  <connectionStrings>
      <remove name="LocalSqlServer" />
      <add name="DbControleDeAcesso" providerName="System.Data.SqlServerCe.4.0" connectionString="Data Source=|DataDirectory|\ControleDeAcesso.sdf" />
      <add name="DbOrcamento" providerName="System.Data.SqlServerCe.4.0" connectionString="Data Source=|DataDirectory|\Orcamento.sdf" />
  </connectionStrings>
  <system.webServer>
     <validation validateIntegratedModeConfiguration="false" />
     <security>
        <authentication>
            <anonymousAuthentication enabled="false" />
            <windowsAuthentication enabled="true" />
        </authentication>
    </security>
    <modules runAllManagedModulesForAllRequests="true">
        <remove name="UrlRoutingModule-4.0" />
        <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />
    </modules>
    <handlers>
         <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
         <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
    <defaultDocument>
        <files>
            <remove value="default.aspx" />
            <remove value="iisstart.htm" />
            <remove value="index.html" />
            <remove value="index.htm" />
            <remove value="Default.asp" />
            <remove value="Default.htm" />
        </files>
    </defaultDocument>
    <!-- <handlers>
        <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </handlers> -->
  </system.webServer>
</configuration>  

我不知道它是否相关,但是遵循我的 RouteConfig 类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace Orcamento.UI
{
    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 = "Orcamento", action = "Index", id = UrlParameter.Optional }
            );
        }
    }
}  

我相信我已经展示了有关我的问题的所有重要信息。如果我省略了,请告诉我。

我投入了大量的时间和精力来学习如何使用EF,jQuery等构建MVC应用程序。我让它在我的开发机器上运行。我很沮丧,它不适用于生产环境。

我真的很希望我能在这里得到一些有价值的帮助。

祝你好运。

Paulo Ricardo Ferreira

1 个答案:

答案 0 :(得分:0)

@paulo Ricardo Ferreira首先检查应用程序池是否设置为v4.0,如果它不是选择它。并尝试使用cmd.as重新注册您的4.0版本,如图{{0所示}}

点击输入它将开始安装而不是重新启动你的系统,而不是点击你在iis中的路线,这将是//管理员在顶部,而不是去isapi和CGI限制选项卡。允许我在图像中显示的所有路径下面。 enter image description here