-1

我不明白为什么我得到 404: That's an error even Powered by AMP ⚡ HTML – Version 1456440290687

<!doctype html>
<html amp lang="en">
  <head>
    <meta charset="utf-8">
    <title>Hello, AMPs</title>
    <link rel="canonical" href="http://www.mmdroid.biz/myjobs/index.html" />
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "NewsArticle",
        "headline": "Open-source framework for publishing content",
        "datePublished": "2015-10-07T12:02:41Z",
        "image": [
          "imgs/logo.jpg"
        ]
      }
    </script>
    <style amp-custom>
      /* any custom style goes here */
      body {
        background-color: white;
      }
      amp-img {
        background-color: gray;
        border: 1px solid black;
      }
    </style>
    <script async src="https://cdn.ampproject.org/v0.js"></script>

以上是我编码的一部分。在此处输入图像描述

4

1 回答 1

1

AMP 缓存仅包含有效的 AMP 页面。由于大量在线样式,您的页面不是有效的 AMP,因此它不在缓存中,因此尝试通过缓存访问会给出 404。在控制台打开的情况下访问以下站点以在开发模式下运行并显示您需要修复的错误:

访问:http ://www.mmdroid.biz/myjobs/index.html#development=1

您还需要有效的 NewsArticle 结构化日期(包括图片):

https://developers.google.com/structured-data/testing-tool/?url=http%3A%2F%2Fwww.mmdroid.biz%2Fmyjobs%2Findex.html

于 2016-02-27T08:36:10.227 回答