私のホームページは次のようにリンクされる可能性があります。
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)
GoogleがこれらのURLを別のページと見なさないように、標準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を定義することはまったく良い考えですか?