4
當nopcommerce 2.4.0運行,我得到的鏈接是localhost:7725/c/2/computers
代替localhost:7725/categories/2/computers
nopcommerce MVC路線說明
我不知道哪裏是代碼轉換類別到ç
請幫助我通過nopcommerce學習MVC。
當nopcommerce 2.4.0運行,我得到的鏈接是localhost:7725/c/2/computers
代替localhost:7725/categories/2/computers
nopcommerce MVC路線說明
我不知道哪裏是代碼轉換類別到ç
請幫助我通過nopcommerce學習MVC。
\Presentation\Nop.Web\Infrastructure\RouteProvider.cs
文件routes.MapLocalizedRoute("Category", "**c**/{categoryId}/{SeName}", new { controller = "Catalog", action = "Category", SeName = UrlParameter.Optional }, new { categoryId = @"\d+" }, new[] { "Nop.Web.Controllers" });
與
routes.MapLocalizedRoute("Category",
"categories/{categoryId}/{SeName}",
new { controller = "Catalog", action = "Category", SeName = UrlParameter.Optional },
new { categoryId = @"\d+" },
new[] { "Nop.Web.Controllers" });
3.更換它做幾乎同樣的\Libraries\Nop.Services\Seo\SitemapGenerator.cs
文件(替換{0}c/{1}/{2}
與{0}categories/{1}/{2}
)
感謝高級 – Green 2012-02-27 14:22:23
謝謝你想弄清楚所有的路線都在NopCommerce – 2013-07-30 08:03:40