hexoブログに404公益ページを追加

4695 ワード

テンセント公益404ページは、子供を失ったことを探して、みんなにこの公益事業に注目させます!効果:https://gmaya.top/404.html
目的:ウェブサイトに存在しないページにアクセスすると、テンセント公益404ページに戻る
使用方法、新規404.htmlページは、トピックのsourceディレクトリの下にあります.内容は次のとおりです.
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="content-type" content="text/html;charset=utf-8;"/>
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <meta name="robots" content="all" />
  <meta name="robots" content="index,follow"/>
  <link rel="stylesheet" type="text/css" href="https://qzone.qq.com/gy/404/style/404style.css">
</head>
<body>
  <script type="text/plain" src="https://www.qq.com/404/search_children.js"
          charset="utf-8" homePageUrl="/"
          homePageName=" ">
  </script>
  <script src="https://qzone.qq.com/gy/404/data.js" charset="utf-8"></script>
  <script src="https://qzone.qq.com/gy/404/page.js" charset="utf-8"></script>
</body>
</html>

nginx構成を変更し、アクセスしたページが存在しない限り404公益ページにジャンプします.
nginxでconfの443ポートで追加
error_page  404      /404.html;

再起動