我正在尝试从我的 URL 中删除“家”,换句话说:
www.domain.com/home/about/ 变为 www.domain.com/aboutus
问题是,房子没有被拆除,我不知道为什么。我可以看到其他人的问题与我在 SO 上的答案几乎相同,所以我不知道为什么这不起作用。
我的 Global.asax 是
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;
namespace Company.Ui
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute("RemoveHomeUrl", // Route name
"{action}", // URL with parameters
new { controller = "Home", action = "Index" } // Parameter defaults
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
}
}
}
我的 ActionLink 代码是:
@Html.ActionLink("About us", "AboutUs", "Home", null, new { @class = "mega" })
当我将鼠标悬停在链接上并单击该链接时,它仍然返回 www.domain.com\home\aboutus
我在 Visual Studio 2012 的调试模式下运行它。
我很茫然,有人可以帮忙吗?