我的主页可能被链接为:
http://example.com
http://example.com/
http://example.com/?ref=1
http://example.com/index.html
http://example.com/index.html?ref=2
(the same page is served for all those URLs)
我正在考虑定义一个规范的URL,以确保Google不会将这些URL视为不同的页面:
<link rel="canonical" href="/webmasters//" /> (relative)
<link rel="canonical" href="http://example.com/" /> (trailing slash)
<link rel="canonical" href="http://example.com" /> (no trailing slash)
应该使用哪一个?我只是打耳光,/
但是搞砸规范性的事情似乎很可怕,所以我想先仔细检查一下。
定义主页的规范URL根本不是个好主意吗?