我正在尝试将ASP .NET MVC 2应用转换为在nginx / mono 2.8上运行。到目前为止它似乎工作得很好,除了当路径为空时默认路由不起作用。我将所有请求代理到fastcgi服务器,并且我得到了一个没有找到ASP .NET 404的页面。
即。这不起作用
http://mysite.com
但这确实
http://mysite.com/home
我的Global.asax.cs文件看起来像这样
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace MyProject
{
public class MvcApplication : System.Web.HttpApplication
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
// Default route
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional }, // Parameter defaults
new string[] {"MyProject.Controllers"}
);
}
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
}
}
}
编辑: 有关我的设置的更多信息。我正在运行OS X 10.6,如果这有任何区别。 MVC项目中任何区域的默认路由也存在同样的问题。
答案 0 :(得分:5)
我实际上遇到了同样的问题并且完全错误地解决了它(至少在我的情况下)...
在mono项目网站的nginx walkthrough中,它说要在你的nginx.conf文件中输入这些行:
index index.html index.htm default.aspx Default.aspx;
fastcgi_index Default.aspx;
好吧,我在两个虚拟机上以完全相同的方式(或者我认为)设置了它。问题是,一个VM有它的根URL工作而一个没有。结果是我忘记了VM上“索引”行上的分号,因此'fastcgi_index'行被解释为'index'行的一部分。
所以在没有工作的VM上,我删除了那个分号。你猜怎么着?有效。然后我添加了分号并完全删除了'fastcgi_index'行,它仍然有效。因此,根据这些轶事证据和一些猜测工作,我会说'fastcgi_index'行不应该包含在MVC应用程序中。好吧,至少MVC 3,我没有测试任何其他东西。
答案 1 :(得分:1)
您是否遵循此页面中的nginx配置?:http://www.mono-project.com/FastCGI_Nginx
我的猜测是默认文件正在阻碍。