我有 2 个 asp.net mvc 4 应用程序:
- MVCForum.site - 带有论坛的开源应用程序和
- My.Site - 我的客户的站点
每个应用程序都有 HomeController。我需要像这样将它们部署到本地 IIS 7.5:
my.Site -> localhost:81 我可以通过 URL localhost:81/home
或 localhost:81/
MVCForumSite.Site -> localhost:81/forum
我可以通过 URL 访问它 localhost:81/forum
它们是分开工作的,但是当它们同时开始工作时,路由冲突就会发生。*如果我将客户的默认配置与 Azure 模拟器一起使用,那么它们可以一起工作,但我不想使用模拟器,因为每次重启对于开发来说都太长了。
MVCForum 有下一条路线(如果需要修复它们很糟糕):
routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.IgnoreRoute("{ favicon}", new { favicon = @"( ./)?favicon.ico( /.*)?" });
routes.MapRouteLowercase( "categoryUrls", // Route name string.Concat(AppConstants.CategoryUrlIdentifier, "/{slug}"), // URL with parameters new { controller = "Category", action = "Show", slug = UrlParameter.Optional } // Parameter defaults ); routes.MapRouteLowercase( "categoryRssUrls", // Route name string.Concat(AppConstants.CategoryUrlIdentifier, "/rss/{slug}"), // URL with parameters new { controller = "Category", action = "CategoryRss", slug = UrlParameter.Optional } // Parameter defaults ); routes.MapRouteLowercase( "topicUrls", // Route name string.Concat(AppConstants.TopicUrlIdentifier, "/{slug}"), // URL with parameters new { controller = "Topic", action = "Show", slug = UrlParameter.Optional } // Parameter defaults ); routes.MapRouteLowercase( "memberUrls", // Route name string.Concat(AppConstants.MemberUrlIdentifier, "/{slug}"), // URL with parameters new { controller = "Members", action = "GetByName", slug = UrlParameter.Optional } // Parameter defaults ); routes.MapRouteLowercase( "tagUrls", // Route name string.Concat(AppConstants.TagsUrlIdentifier, "/{tag}"), // URL with parameters new { controller = "Topic", action = "TopicsByTag", tag = UrlParameter.Optional } // Parameter defaults ); routes.MapRouteLowercase( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults );
和 My.Site 的 RouteConfig.cs
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
你能帮我部署它吗?