Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Is there any way to have niceurl return cleaner urls?
When I create a french page, I don't want accents in the filename, umbraco already handles the spaces and some special chars like "ö", but not all of them...
can anyone help me out?
Kind regards,
Rik
take a look into the umbracoSettings.config where you can set the character replacings:
<requestHandler> <!-- this will ensure that urls are unique when running with multiple root nodes --> <useDomainPrefixes>true</useDomainPrefixes> <urlReplacing> <char org=" ">-</char> <char org="""></char> <char org="."></char> <char org=";"></char> <char org="/"></char> <char org=":"></char> <char org="#"></char> <char org=","></char> <char org="&"></char> <char org="?"></char> <char org="æ">ae</char> <char org="ø">oe</char> <char org="å">aa</char> <char org="ä">ae</char> <char org="ö">oe</char> <char org="ü">ue</char> <char org="ß">ss</char> <char org="("></char> <char org=")"></char> <char org="["></char> <char org="]"></char> <char org="'"></char> <char org="\"></char> </urlReplacing> </requestHandler>
Thomas
Thanks a lot !
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Niceurl doesn't filter out accents like élévàè
Is there any way to have niceurl return cleaner urls?
When I create a french page, I don't want accents in the filename, umbraco already handles the spaces and some special chars like "ö", but not all of them...
can anyone help me out?
Kind regards,
Rik
take a look into the umbracoSettings.config where you can set the character replacings:
Thomas
Thanks a lot !
is working on a reply...