在IIS 7中运行MVC3应用程序时出现问题

时间:2011-02-20 20:48:42

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

我在运行Windows 7 Home-64位的计算机上运行IIS7中的MVC 3项目时遇到问题。这就是我所做的。

  1. 已安装IIS 7。
  2. 访问服务器并获得IIS欢迎页面。
  3. 创建了一个名为d:\ MySite的目录,并将MVC应用程序复制到该目录中。 (MVC应用程序只是在visual studio中创建新的MVC3项目时创建的标准应用程序。它只显示一个主页和一个帐户登录页面。它在Visual Studio开发服务器中运行良好,我也将其复制出来到我的托管网站,它在那里工作正常)
  4. 启动IIS管理控制台。
  5. 停止了默认网站。
  6. 添加了名为“MySite”的新网站,其物理目录为“d:\ Mysite”
  7. 将名为MySite的应用程序池更改为使用.Net Framework 4.0,Integrated pipeline
  8. 当我在浏览器中访问该站点时,我得到了d:\ MySite目录中的文件列表。就好像IIS没有将d:\ MySite的内容识别为MVC应用程序一样。

    我需要做些什么来解决这个问题?

    根据要求,这是web.config:

        <?xml version="1.0"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=152368
      -->
    
    <configuration>
      <connectionStrings>
        <add name="ApplicationServices"
             connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
             providerName="System.Data.SqlClient" />
      </connectionStrings>
    
      <appSettings>
        <add key="ClientValidationEnabled" value="true"/> 
        <add key="UnobtrusiveJavaScriptEnabled" value="true"/> 
      </appSettings>
    
      <system.web>
        <compilation debug="true" targetFramework="4.0">
          <assemblies>
            <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
            <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
            <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
            <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
            <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
          </assemblies>
        </compilation>
    
        <authentication mode="Forms">
          <forms loginUrl="~/Account/LogOn" timeout="2880" />
        </authentication>
    
        <membership>
          <providers>
            <clear/>
            <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
                 enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
                 maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
                 applicationName="/" />
          </providers>
        </membership>
    
        <profile>
          <providers>
            <clear/>
            <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
          </providers>
        </profile>
    
        <roleManager enabled="false">
          <providers>
            <clear/>
            <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
            <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
          </providers>
        </roleManager>
    
        <pages>
          <namespaces>
            <add namespace="System.Web.Helpers" />
            <add namespace="System.Web.Mvc" />
            <add namespace="System.Web.Mvc.Ajax" />
            <add namespace="System.Web.Mvc.Html" />
            <add namespace="System.Web.Routing" />
            <add namespace="System.Web.WebPages"/>
          </namespaces>
        </pages>
      </system.web>
    
      <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
        <modules runAllManagedModulesForAllRequests="true"/>
      </system.webServer>
    
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
    </configuration>
    

6 个答案:

答案 0 :(得分:32)

我也在“ServerFault”上发布了这个问题,并解决了问题here

答案是:

由于IIS是在.NET 4之后安装的,因此您可能需要运行aspnet_regiis.exe工具来注册IIS中的所有.NET 4内容。

答案 1 :(得分:9)

我想补充一些细节:

使用aspnet_regiis -i注册ASP.NET 4后,我还必须使用aspnet_regiis -s W3SVC/1/ROOT/SampleApp1更新Web应用程序以解决问题。

/1/中的W3SVC/1/ROOT/SampleApp1是您的网络应用程序的实例。您可以通过查看ID列中的IIS管理器找到它。

ROOT/SampleApp1中的W3SVC/1/ROOT/SampleApp1是您的申请路径。如果您想要更新所有网站,请执行aspnet_regiis -s W3SVC/

之后它对我来说很好。

答案 2 :(得分:4)

在服务器上运行MVC 3网站时出现403.14错误。服务器是32位。 2008. IIS7。问题是未安装HTTP重定向功能。服务器管理器 - &gt;角色 - &gt; Web服务器 - &gt;角色服务 - &gt; HTTP重定向。这是唯一能解决它的问题。 web.config不需要改变。

答案 3 :(得分:1)

我认为大多数IIS7网站设置问题都是由于文件夹安全性造成的。如果您尝试通过将应用程序文件夹直接从开发环境复制到不在wwwroot下的文件夹来创建网站,则文件夹的安全性将是错误的,您将在数小时内对其进行模糊错误。简单的方法是检查和inetpub / wwwroot文件夹,检查它并添加权限到您的文件夹,从computername \ IIS_IUSRS和computername \ Users开始。对于mvc,请确保在根目录下有一个web.config AND global.asax。您不需要mvc的默认文档,也不应该允许目录浏览。如果使用aspnet_regiis,如果计算机上托管了其他站点,则可能需要使用-ir。

答案 4 :(得分:0)

您是否检查过IIS中的网站默认文档位于列表顶部。

我认为默认为default.asp,default.aspx不在那里或在列表的底部

答案 5 :(得分:0)

在安装.net v4.0.30319之前我没有解决这个问题,在我的机器上的.net版本是v4.0.30128之前。我需要很长时间才能找出问题,希望这可以帮助别人。