Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Tom Maton 387 posts 660 karma points
    Aug 24, 2009 @ 16:38
    Tom Maton
    0

    multilingual URL's causing problems

    Hi All,

    A client of mine has multilingual site and alot of the site nodes have special charaters in eg. consultoría (consultancy in english).

    So when trying to go to this site the URL has ../consultoría.aspx in which it then fails because of the special character.

    Is there a way round this? I am using the NiceURL in my XSLT but this doesn't resolve it as the urlName is saved with the special characater in it already.

    Tom

  • Ismail Mayat 4511 posts 10092 karma points MVP 2x admin c-trib
    Aug 24, 2009 @ 16:46
    Ismail Mayat
    102

    Tom,

    Take a look at the umbracoSettings.config file there is a section in there for url replacing special characters

        <urlReplacing>
          <char org=" ">-</char>
          <char org="&quot;"></char>
          <char org="."></char>
          <char org=";"></char>
          <char org="/"></char>
          <char org=":"></char>
          <char org="+">plus</char>
          <char org="&amp;"></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="Ä">Ae</char>
          <char org="Ö">oe</char>
        </urlReplacing>

  • Tom Maton 387 posts 660 karma points
    Aug 24, 2009 @ 18:43
    Tom Maton
    0

    Cheers Ismail

    That worked a treat.

    Cheers

Please Sign in or register to post replies

Write your reply to:

Draft