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
|
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.
|
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. |
|||
|
|
|
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. |
|||
|
|