在MVC 3部署之后,页面未正确重定向

时间:2013-08-09 11:50:42

标签: c# asp.net-mvc asp.net-mvc-3

我将我的MVC 3应用程序部署到服务器上,在解决了与缺少MVC dll(服务器没有安装MVC)相关的几个问题之后,它开始出错:

Firefox “页面未正确重定向” Chrome “此网页有重定向循环” IE “此页面无法显示”

我发现人们说它与cookie有关,但我无法理解如何解决问题。

我从未看到默认页面是否。

我怀疑我的Global.asax文件或我的Web.Config存在问题。

Global.asax中

public class MvcApplication : System.Web.HttpApplication
{
    public static void RegisterGlobalFilters(GlobalFilterCollection filters)
    {
        filters.Add(new HandleErrorAttribute());
    }

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
        );

    }

    protected void Application_Start()
    {
        AreaRegistration.RegisterAllAreas();

        RegisterGlobalFilters(GlobalFilters.Filters);
        RegisterRoutes(RouteTable.Routes);
    }

}

我的 Web.Config 中有一部分没有AppSettings,connectionStrings和system.serviceModel:

  <system.web>
    <compilation debug="true" defaultLanguage="c#" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Web.Helpers, Version=1.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" />
        <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      </assemblies>
    </compilation>
    <authentication mode="Forms">
      <forms loginUrl="~/Account/LogOn" timeout="2880" />
    </authentication>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
      <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>
    <customErrors mode="Off">
      <error statusCode="404" redirect="/Error/PageNotFound" />
    </customErrors>
  </system.web>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <handlers>
      <remove name="UrlRoutingHandler" />
    </handlers>
  </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>
来自登录页面的

索引操作:

public ActionResult Index()
 {
   if (CurrentAuthenticatedData != null && CurrentAuthenticatedData.User != null)
     ViewBag.IsLogin = true;
   else
     ViewBag.IsLogin = false;

     return View();
  }

CurrentAuthenticatedData

System.Web.Routing.RequestContext Ctx = null;
public AuthenticatedData CurrentAuthenticatedData
{
    get
    {
        AuthenticatedData retval = null;

        if (Ctx.HttpContext.User.Identity.IsAuthenticated)
        {
            retval = (AuthenticatedData)ViewBag.Auth;
        }

        return retval;
    }
}

AuthenticatedData是一个我存储与登录用户相关的几个属性的类。

最后我的查看代码:

@{
    ViewBag.Title = "Index";
}

<h2>Efetuar Login</h2>


@using (Html.BeginForm()) 
{
    <div style="@(ViewBag.IsLogin??false ? "display: none" : "")">
        @Html.ValidationMessage("Error")
        <p>Username:<input type="text" name="usr" /></p>
        <p>Password:<input type="password" name="pwd" /></p>
        <p>
            <input type="submit" value="Login" />
        </p> 
    </div>
}

我尝试部署一个dummie MVC应用程序,它的工作原理! = /

你能帮助我吗?

由于

2 个答案:

答案 0 :(得分:1)

您的MVC安装可能存在问题。确保正确安装MVC。

我猜你的路线没有正确注册,因此如果你去你的应用程序的主页,它会显示404.这在web.config中的这一行被选中:

<error statusCode="404" redirect="/Error/PageNotFound" />

并将您重定向到该页面,该页面也会抛出404,再次将您重定向到同一页面,依此类推,以此类推,从而导致重定向循环。

出于调试目的,您可以注释掉该行并检查您的路由是否已注册。

答案 1 :(得分:0)

我发现MVC在我的BaseController中运行一个名为 Initialize 的方法,而不是其他任何方法:

protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
  ...
}

在该方法中,我有一个验证,以确定用户是否经过身份验证,何时不进行Session.Abandon();和奇怪的事情(我不知道为什么):

if (!requestContext.HttpContext.Request.CurrentExecutionFilePath.Equals("/MyWebSite/"))
  Response.Redirect("~/", true);

它让我进入无限循环,因为请求页面是 MyNewWebsite insted MyWebSite ......

抱歉,感谢您的耐心