Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am just wondering if I should do URIs like

/artist/Antony+%26+The+Johnsons

or

/artist/antony-the-johnsons

In now days, is OK to use encoded URL from SEO perspective?

Thanks

share|improve this question
There are languages that are not based on Latin alphabet, which need to be encoded. There are even non latin domain names. I'm not an SEO guru, but I think that there could be a problem if you don't encode your URLs. – Boris Belenski Aug 8 '12 at 20:48

closed as off topic by KevinDTimm, DisgruntledGoat, random, Bill the Lizard May 4 at 15:23

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

That's fine. A couple years back SEOmoz did a study on delimiters in URLs, and URL-encoded strings actually had the higher correlation in ranking. I'm not able to find it so you'll have to take my word for it. (I believe it was the annual stats report they do)

You would be safer with URL-encoded strings, as it's a standard and will not produce crawl issues. Rewriting permalinks with dashes is better for the user however, so that's the accepted standard. You just have to make sure you rewrite correctly.

share|improve this answer

I'd always try and avoid using characters that need encoding.

Google may not have problems with it but other scrapers and crawlers may get it wrong. If they do they may create duplicate or broken links to your website, and because of that you may lose out.

As Zachary said, it's also nicer for users to read and type in.

share|improve this answer

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