如何在普通 HTML 页面中引用 AMP HTML 页面

How to reference an AMP HTML page in a normal HTML page

如何在普通 HTML 页面中 link 到 AMP HTML 页面。

GitHub 上的示例指定了一个规范页面,我猜它指的是 "normal" HTML 页面。 https://github.com/ampproject/amphtml#how-does-amp-html-work

<link rel="canonical" href="hello-world.html" >

但是 "normal" 页面如何 link 到 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 到 test/validate 页面,方法是将 #development=1 放在 URL.

的末尾