GitHub Pages サイトのカスタム 404 ページを作成する
サイト上の存在しないページにアクセスしようとした際に表示される、404 エラーページをカスタマイズできます。
GitHub Pages は、GitHub Free のパブリックリポジトリ、GitHub Pro のパブリックおよびプライベートリポジトリ、GitHub Team、GitHub Enterprise Cloud、GitHub Enterprise Server で利用いただけます。
-
On GitHub Enterprise, navigate to your site's repository.
-
Navigate to the publishing source for your site. For more information about publishing sources, see "About GitHub Pages."
-
ファイルリストの上にある [Create new file(新しいファイルを作成)] をクリックします。
-
In the file name field, type
404.html
or404.md
. -
If you named your file
404.md
, add the following YAML front matter to the beginning of the file:--- permalink: /404.html ---
-
Below the YAML front matter, if present, add the content you want to display on your 404 page.
-
ページの下部で、ファイルに行った変更について述べた短く意味のあるコミットメッセージを入力してください。コミットメッセージ内でコミットを複数の作者に関連付けることができます。詳細は「複数の共同作者を持つコミットを作成する」を参照してください。
-
コミットメッセージフィールドの下で、コミットを現在のブランチに追加するか、新しいブランチを作成するかを判断してください。現在のブランチが
master
なら、コミットに新しいブランチを作成することにして、プルリクエストを作成してください。 -
[Propose new file(新しいファイルを提案)] をクリックしてください。
参考リンク
- Front matter in the Jekyll documentation