运行 nopcommerce 2.4.0 时,我得到的链接localhost:7725/c/2/computers
是localhost:7725/categories/2/computers
我不知道将类别转换为c的代码在哪里
请帮助我通过 nopcommerce 学习 MVC。
运行 nopcommerce 2.4.0 时,我得到的链接localhost:7725/c/2/computers
是localhost:7725/categories/2/computers
我不知道将类别转换为c的代码在哪里
请帮助我通过 nopcommerce 学习 MVC。
\Presentation\Nop.Web\Infrastructure\RouteProvider.cs
fileroutes.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}
)