Take the community feedback survey now.
AI OnAI Off
Take the community feedback survey now.
Feb 16, 2022
May 24, 2022
CMS Core
Closed, Acceptance tests pass
You can use simple addresses as outgoing URLs (when simple URLs are available). The following example shows how to set PreferredUrlFormat to Simple or Hierarchical (default) in startup.cs (or in appsettings.json).
public void ConfigureServices(IServiceCollection services) { // omitted for brevity services.Configure<RoutingOptions>(o => o.PreferredUrlFormat = PreferredUrlFormat.Simple); }