EPiServer.CMS.Core 12.6.0
Feb 16, 2022
May 23, 2022
CMS Core
Closed, Acceptance tests pass
You can have friendly media URLs (like https://www.something.se/en/research/research-support/contentassets/some-document.pdf) that are based on the content owner by entering the following configuration code:
public void ConfigureServices(IServiceCollection services) { services.Configure<RoutingOptions>(o => { o.ContentAssetsBasePath = ContentAssetsBasePath.ContentOwner; }); }