這個基本上就是要讓 a 的超連結符合 html 的語意,Google 只能追蹤 <a>
標記中含有 href 屬性的連結,舉例來說:
Googlebot 可以追蹤的超連結:
<a href="https://example.com">
<a href="/relative/path/file">
Googlebot 不能追蹤的超連結,像這些都不是合法的超連結寫法都會無法追蹤:
<a routerLink="some/path">
<span href="https://example.com">
<a onclick="goto('https://example.com')">
另外是 href 內的值也要是 Googlebot 可以解析的,簡單說就是超連結,不要用 javascript 的方式去切換頁面:
Googlebot 能夠解析的網址:
https://example.com/stuff
/products
/products.php?id=123
Googlebot 無法解析的網址:
javascript:goTo('products')
javascript:window.location.href='/products'
#
參考:
提供可檢索的連結