SEO 标记是否需要同时出现在网站的两个版本上?

Does SEO markup need to be on both versions of a website?

假设我有 2 个页面(1 个用于移动设备,1 个用于桌面设备)

手机URL:http://www.example.com/mobile/

桌面 URL:http://www.example.com/

我将这些 SEO 标签放在桌面版网站的 <head> 中:

      <meta name="description" content="Amazing Description"/>
      <meta property="og:type" content="Website"/>
      <meta property="og:url" content="http://www.example.com/"/>
      <meta property="og:title" content="Perfect Title"/>
      <meta property="og:description" content="Amazing Description For Social Media"/>
      <meta property="og:image" content="http://www.example.com/img/awesome.png"/>

最后,我将这个规范标签放在移动页面中:

      <link rel="canonical" href="http://www.example.com/">

这不会导致放置在移动网站 <head> 中的任何其他标签都被忽略吗?

如果 Google 信任您的规范 link,那么是的,只会考虑您的桌面页面。