Multiple URLS per post non-ascii

I am looking for some best practice / practical advise on a particular URL use case. I am finding myself using a lot of non-ASCII characters in my URLs. This doesn’t really make it easy for users of ASCII computer keyboard layouts to input the URLs or copy the URLs from the browser bar (if they do then it looks like HTML %CC%B1 crap).

Example: when the following URL is copied from the browser URL bar
http://www.hughandbecky.org/2005/u̱t-Maꞌin

Read More

When it is pasted it looks like this:

http://www.hughandbecky.org/2005/u%CC%B1t-ma%EA%9E%8Cin/

mostly because the underline of the u is really unicode character combining macron below U+0331 and the ' looking character is really a lowercase Saltillo unicode latin small letter saltillo U+A78C

What I want to be able to do is allow is allow Americans using ASCII keyboards to type in things like http://www.hughandbecky.org/2005/ut-main or http://www.hughandbecky.org/2005/ut-ma'in (with ' being a single quote this time) and be redirected to http://www.hughandbecky.org/2005/u̱t-Maꞌin.

I know that I could use the plugin redirection and have used it in the past. But this has several drawbacks. Namely, the list could get rather long over time, and it is not managed on the post. So, I would like to manage this in the post’s admin screen… Like managing a custom field. This way if I delete the post then it also deletes the additional URLs. I have seen this question http://wordpress.org/support/topic/multiple-slugs-per-post-in-35 about multiple slugs for WordPress, and in a sense I guess I could conceptualize it that way… but there is no plugin for that either. So, my question is really, what can be done about this kind of thing?

Related posts

Leave a Reply

1 comment