vote up 6 vote down star
4

When you are building URLs that should be legible for users and search engines and you do it automatically from the content, what's the best way to represent blank spaces? Hyphens (this is what StackOverflow uses)? Underscores? Any other? Does any of those make a different for SEO?

flag

73% accept rate

6 Answers

vote up 18 vote down check

Both are valid URL characters and both have their pros and cons.

Pro dash

  • Google recommends dashes, and here is what Matt Cutts from Google has to say about Dashes vs. underscores.

    If you have a url like word1-word2, that page can be returned for the searches word1, word2, and even “word1 word2″. That’s why I would always choose dashes instead of underscores.

  • Dashes seem to be what major blogs do: The Huffington Post, TechCrunch, Engadget, ...
  • Dashes seem to be what major CMS do.
    Not sure about that one anymore, can anyone comment?
  • As mentioned by Kazar, underscores can clash with the underlining of links.
  • I find underscores awkward to type.
  • Rene Saarsoo pointed out that dashes take less space than underscores in proportional fonts.
  • Ionut G. Stan mentioned that underscores are not allowed in hostnames. If you strive for consistency you should opt for dashes.

Pro underscore

  • Dashes are not allowed in ISO9660 file systems. This can be a problem if your content is also shipped on DVD or CD (e.g help files or eLearning content).
  • In some languages (e.g. German) dashes can be word characters and are not generally considered word separators.
link|flag
A lot of CMSs allow you to choose. For example, I know that Drupal lets you specify explicity the path seperator. However, it is worth pointing out that the default they use is indeed dashes. EzPublish also defaults to dashes, I believe, but does let you choose. – Kazar May 30 at 9:09
Dashes are usually used inside "joined words" (also in English, like "URL-friendly"). But they are rare enough and most of the time the meaning will not get lost when you have word-with-dash-inside-words-just-separated-with-dash. – Rene Saarsoo May 30 at 10:56
vote up 0 vote down

I think that depends on your favorite. My favourites are underscores, but I don't see any (dis-)advantages if using hyphens or other valid URL characters instead. And everything looks better than %20 :)

link|flag
vote up 5 vote down

Again, personal preference - personally I think hyphens work better than underscores, because underscores can clash with the underlining a tags add (by default), so http://someurl.com/this_is_a_address looks like there are no underscores there. (as this is stack overflow, roll over the link). http://someurl.com/this-is-a-address looks fine.

link|flag
4  
The underscores sit under the underline in FF3 – ck May 30 at 8:51
How odd, I'm running FF3 on ubuntu, and the underscores are obscured. – Kazar May 30 at 8:58
3  
Underscores are under the underline in Chrome – Charlie Somerville May 30 at 10:00
Also under the underline in IE8! But I prefer the dashes. – Graham Clark Jul 17 at 10:31
vote up 1 vote down

I'd say dashes. I used to use underscored for pretty much every such purpose (representing spaces) but nowadays, with all the visual thingies blinking all round, you often find underlining that makes them normally invisible.

link|flag
vote up 3 vote down

You know, if you buy a domain name, you're allowed to use hyphens inside that name, but no underscores. This is an additional reason for which I believe hyphens are better than underscores.

link|flag
vote up 4 vote down

Another advantage of dashes is that in proportional font they take less space that underscores. Compare:

It's not a lot, but every little helps :)

link|flag
+1 This made me smile. – Nixuz May 30 at 10:54

Your Answer

Get an OpenID
or

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