4

运行 nopcommerce 2.4.0 时,我得到的链接localhost:7725/c/2/computerslocalhost:7725/categories/2/computers

我不知道将类别转换为c的代码在哪里

请帮助我通过 nopcommerce 学习 MVC。

4

1 回答 1

9
  1. Open \Presentation\Nop.Web\Infrastructure\RouteProvider.cs file
  2. Find
routes.MapLocalizedRoute("Category",
                 "**c**/{categoryId}/{SeName}",
                 new { controller = "Catalog", action = "Category", SeName = UrlParameter.Optional },
                 new { categoryId = @"\d+" },
                 new[] { "Nop.Web.Controllers" });

and replace it with

routes.MapLocalizedRoute("Category",
                            "categories/{categoryId}/{SeName}",
                            new { controller = "Catalog", action = "Category", SeName = UrlParameter.Optional },
                            new { categoryId = @"\d+" },
                            new[] { "Nop.Web.Controllers" });

3. Do almost the same in \Libraries\Nop.Services\Seo\SitemapGenerator.cs file (replace {0}c/{1}/{2} with {0}categories/{1}/{2})

于 2012-02-24T10:42:49.697 回答