如何在普通 HTML 页面中链接到 AMP HTML 页面。
GitHub 上的示例指定了一个规范页面,我猜它指的是“普通”HTML 页面。https://github.com/ampproject/amphtml#how-does-amp-html-work
<link rel="canonical" href="hello-world.html" >
但是“正常”页面如何链接到 AMP HTML 页面?
如何在普通 HTML 页面中链接到 AMP HTML 页面。
GitHub 上的示例指定了一个规范页面,我猜它指的是“普通”HTML 页面。https://github.com/ampproject/amphtml#how-does-amp-html-work
<link rel="canonical" href="hello-world.html" >
但是“正常”页面如何链接到 AMP HTML 页面?
根据niemanlab.org,它是这样完成的:
<link rel="amphtml" href="hello-its-an-amp-page.html">
由于我只用 AMP 编写,所以如果我的页面名称是 index.html,那么这样做的方式是这样的:
<link rel="canonical" href="index.html">
这样,它总是引用自身而不是常规的 HTML 页面。如果有任何疑问,请使用 Google Chrome 测试/验证页面,方法是将 #development=1 放在 URL 的末尾。