如何在 ASP.NET Core 7 MVC 中小写所有路由,包括区域和身份?

问题描述 投票:0回答:1

我有

/Admin/Home

但是我需要

/admin/home

我尝试了很多方法都没有效果。我已经坐了很长时间了,我希望有人能帮助我。

我尝试使用以下内容:

services.AddRouting(options => options.LowercaseUrls = true);

还有这个:

services.Configure<RouteOptions>(options => options.LowercaseUrls = true); 

它不会以任何方式影响大多数链接的外观。

c# asp.net-core-mvc asp.net-core-7.0
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.