Eine benutzerdefinierte 404-Seite für Ihre GitHub Pages-Website erstellen
Sie können eine benutzerdefinierte 404-Fehler-Seite anzeigen lassen, wenn Benutzer versuchen, nicht vorhandene Seiten auf Ihrer Website aufzurufen.
GitHub Pages is available in public repositories with GitHub Free, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server.
-
On GitHub Enterprise, navigate to your site's repository.
-
Navigate to the publishing source for your site. Weitere Informationen zu Veröffentlichungsquellen finden Sie unter „Informationen zu GitHub Pages“.
-
Above the file list, click Create new file.
-
Geben Sie im Feld für den Dateinamen
404.html
oder404.md
ein. -
Wenn Sie die Datei
404.md
genannt haben, fügen Sie den folgenden YAML-Frontmatter am Anfang der Datei hinzu:--- permalink: /404.html ---
-
Fügen Sie unter dem YAML-Frontmatter, so vorhanden, den Inhalt ein, der auf Ihrer 404-Seite angezeigt werden soll.
-
At the bottom of the page, type a short, meaningful commit message that describes the change you made to the file. You can attribute the commit to more than one author in the commit message. For more information, see "Creating a commit with multiple co-authors."
-
Legen Sie unter den Commit-Mitteilungsfeldern fest, ob Sie Ihr Commit zum aktuellen Branch oder zu einem neuen Branch hinzufügen möchten. If your current branch is
master
, you should choose to create a new branch for your commit and then create a pull request. For more information, see "Creating a new pull request." -
Click Propose new file.
Weiterführende Informationen
- Front matter (Frontmatter) in der Jekyll-Dokumentation