Issue Description:
Browsing a page and you get an error message:
The page was not displayed because the request URI too long.
Solution:
ASP.NET has multiple checks that validate the length of the URL and the path in Windows. Under normal circumstances, the default settings are enough, but to support very long URL's, add the following configuration:
<httpRuntime maxUrlLength="1024" relaxedUrlToFileSystemMapping="true"/>
For the reference: https://world.optimizely.com/documentation/Items/Developers-Guide/Episerver-CMS/9/Routing/
Article is closed for comments.