为 GitHub Pages 站点创建自定义 404 页面
您可以自定义在人们尝试访问您站点上不存在的页面时显示的 404 错误页面。
GitHub 页面 可用于具有 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 页面."
-
在文件列表上方,单击 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.
-
在页面底部,键入简短、有意义的提交消息,描述您对文件所做的更改。您可以在提交消息中将提交归因于多个作者。更多信息请参阅“创建多个合作作者的提交."
-
在 commit message(提交消息)字段下方,决定要将提交添加到当前分支还是添加到新分支。如果当前分支为
master
,则应选择为提交创建新分支,然后创建拉取请求。 -
单击 Propose new file(提议新文件)。
延伸阅读
- Front matter in the Jekyll documentation