Reputation: 31
Here is an example how to modify global.asax.cs to achieve this, however this works only for version 3.x as the global.asax.cs source code is different in ver 4.1: http://devnet.kentico.com/Forums.aspx?ForumID=19&Thread=00004982
So I need a solution for 4.1.
Thanks!
Upvotes: 3
Views: 480
Reputation: 971
In 4.1 you can run this SQL script to update the URLs
update CMS_DocumentAlias set AliasURLPath = LOWER(AliasURLPath)
Upvotes: 1