Short URL or long URL for SEO

大兔子大兔子 提交于 2019-12-06 05:58:59

问题


I am implementing cs-cart for a web site. Which one is better for SEO if possible with a reason or reference. Site sells books stamps cds etc.

www.domain.com/book/Java.html (or) www.domain.com/book/programming/Java.html 

or

www.domain.com/Java.html

Some says short URLs are good. But isnt it good that stating which category the product it is in. Thanks


回答1:


You can go for both, via canonical URLs. For example, in the <head> of both /Java.html and /book/Java.html:

<link rel="canonical" href="/book/programming/Java.html" />

With that, Googlebot (and Yahoo/MS' spiders) will see the current page as a duplicate of the canonical link and ignore it, without the usual demerits that come with dupe content.

Long URLs are good for being descriptive, clear, & searchable, while short URLs are nice for people to send around to friends and whatever social network du jour - chances are you want both.

Maintaining the different URLs & dupes will add some server work though. If it's too much effort, I'd go with the long form for the users' sake & search-ability. "java.html" could just be some random page about coffee, it needs context.




回答2:


What if it fits into two categories? That would be the case where I say that it's better to go with a short URL because you don't want duplicate content.




回答3:


Try to get the right size for the content of the site. For example the word "book" is redundant in a URL of a bookshop.



来源:https://stackoverflow.com/questions/2313808/short-url-or-long-url-for-seo

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!