By "SEO part of the URL" I mean:
stackoverflow.com/questions/question_id/this-is-the-seo-part
The SEO part appears to be constructed where for each character in the question's title:
- If it's a letter or a number, copy it in the SEO part
- If it's not and the last character in the SEO part is not a dash, add a dash
This, however, has the big problem that questions with C++ in the title appear to a human reader to be about C.
Example: http://stackoverflow.com/questions/1793678/c-an-impossible-behavior , whose title is "C++, an “impossible” behavior."
My proposal
Consider plusses as valid characters. You don't even have to replace them with %XX, http://stackoverflow.com/questions/1793678/c++-an-impossible-behavior is a perfectly valid URL.
Note
I know that some of you don't like it when people put the language in the question title, but whether you like it or not it's something that is done in practice. So I feel that what I proposed is necessary, and I also ask you to please not discuss here about whether putting the language in the title is good practice or not. Thanks.
Edit
There has been some discussion about whether + is a valid character in an URL, and whether it has a valid meaning. In a path it is valid and it doesn't have a special meaning.
From the RFC:
reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
In 3.3. Path Component:
pchar = unreserved | escaped | ":" | "@" | "&" | "=" | "+" | "$" | ","The path may consist of a sequence of path segments separated by a
single slash "/" character. Within a path segment, the characters "/", ";", "=", and "?" are reserved.
So, pchar (the valid characters in a path) is formed by unreserved characters in addition to the reserved characters explicitly allowed.
+actually means in the URL. – random♦ Jan 31 '10 at 1:49<table>s for layout are valid but misused. The HTML validates, but you are misusing them. The same would be true in this case: the URL is valid, but you are misusing the plusses. Again, please explain why this is so wrong. Using my old example, SO does use tables for layout. – Koper Jan 31 '10 at 14:11+absolutely is a valid character for a path part — see the production forpcharin the same RFC. Just because some characters are generally “reserved” as potentially having special meaning in URLs, that doesn't mean they're unusable in all parts of a URL. You have to check the grammar for the specific part you're interested in to find out. – bobince Jan 31 '10 at 21:34