I have made a website in modx revolution php framework and recently I have added Friendly Url functionality in apache.

As the site is in Greek I would like to have greek characters in the url, is it a valid approach for friendly urls or it can cause a problem in the future?

edit: Example Links from the japanese wikipedia ディートリヒ・ブクステフーデ

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Section 2.2 of the the RFC 1738 document states that:

Thus, only alphanumerics, the special characters "$-_.+!*'(),", and
reserved characters used for their reserved purposes may be used
unencoded within a URL.

You can encode other characters in your URL, and some browsers (e.g. Chrome) will often decode them in the address bar.

However, to ensure the URL is readable on all browsers you should avoid using the greek characters altogether in your URL - use a US-ASCII equivalent if possible.

link|improve this answer
feedback

It's not a very good idea. Either urlencode the non-ASCII charaters (but that won't be very url-friendly) or convert them to their ASCII counterparts.

$url = $server . $path . '/' . urlencode($greektext);

-

$arr1 = array('Α', 'α', 'Β', 'β', ...);
$arr2 = array('A', 'a', 'B', 'b', ...);
$url = $server . $path . '/' . str_replace($arr1, $arr2, $subject);
link|improve this answer
2  
Why is it not a good idea ? – DarkDust Mar 18 '11 at 12:15
Because as far as I know, http url should consist only of ASCII characters. "Octets must be encoded if they have no corresponding graphic character within the US-ASCII coded character set, if the use of the corresponding character is unsafe, or if the corresponding character is reserved for some other interpretation within the particular URL scheme." [1] – Czechnology Mar 18 '11 at 12:19
2  
I think this is relevant: w3.org/International/articles/idn-and-iri – Dave Everitt Mar 18 '11 at 12:28
1  
@Dave Everitt, gee, that's a new Babylon! Also, a dangerous and insecure one, as mentioned in your link (when used on domains). – Czechnology Mar 18 '11 at 12:32
1  
@Gumbo, with "URL-friendly" I mean "easy to remember and type in". When a lot of %NN come in, I wouldn't call it url-friendly anymore. The same goes for non-ascii characters when I can't type them in (e.g. I don't have the correct keyboard layout available). – Czechnology Mar 18 '11 at 12:38
show 12 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.