Search code examples
internationalizationpermalinks

Is it possible to create INTERNATIONAL permalinks?


i was wondering how you deal with permalinks on international sites. By permalink i mean some link which is unique and human readable.

E.g. for english phrases its no problem e.g. /product/some-title/

but what do you do if the product title is in e.g chinese language?? how do you deal with this problem?

i am implementing an international site and one requirement is to have human readable URLs. Thanks for every comment


Solution

  • How about some scheme like /productid/{product-id-number}/some-title/ where the site looks at the {number} and ignores the 'some-title' part entirely. You can put that into whatever language or encoding you like, because it's not being used.