非常简单的HTML,导致在GitHub Pages上找不到404

时间:2019-03-23 14:16:09

标签: github github-pages

我拥有GitHub Pages中托管的最简单的简单网站。该站点由一个文件index.html组成,其内容为

<html>
    <head>
        <title>Simple Test</title>
    </head>
    <body>
        <p>Hallo world</p>
    </body>
</html>

(N.B。您可以看到存储库here。)

我认为我正确设置了存储库,并且存储库设置确认“我的GitHub Pages网站当前是从master分支构建的”。

GitHub settings screenshot

您应该可以在此处查看页面:https://githubpagestest83.github.io,但对我来说却出现404 Not Found错误。

同一问题How to fix page 404 on Github Page有18个答案。这是他们对我不起作用的原因:

  1. https://stackoverflow.com/a/45907768/575530推送一个空的提交。尝试here无效。
  2. https://stackoverflow.com/a/39691475/575530添加.nojekyll文件。已尝试here,但根据文档here并不需要。
  3. https://stackoverflow.com/a/13812675/575530删除并重新创建gh-pages分支。我正在使用主人。
  4. https://stackoverflow.com/a/50034409/575530添加index.html。 https://githubpagestest83.github.io/index.html也失败了。
  5. https://stackoverflow.com/a/41930848/575530推送仅更改空白的提交。尝试here无效。
  6. https://stackoverflow.com/a/13169450/575530 URL区分大小写。我正在使用所有小写字母。
  7. https://stackoverflow.com/a/45561033/575530添加一个空的docs / CNAME文件。尝试here无效。
  8. https://stackoverflow.com/a/46409458/575530删除并重新创建网站。我尝试过(这是第二个站点)
  9. https://stackoverflow.com/a/46790656/575530推送空提交(重复建议)
  10. https://stackoverflow.com/a/51437009/575530带有html错误的页面将不被处理。我的是在本地工作的,我不相信有任何错误。
  11. https://stackoverflow.com/a/48344759/575530切换HTTP / HTTPS。 http://githubpagestest83.github.io/https://githubpagestest83.github.io/都不起作用。
  12. https://stackoverflow.com/a/17772783/575530在提交前绑定您的域。我不打算购买域名。
  13. https://stackoverflow.com/a/46134154/575530更改项目设置,因为GitHub页面的默认设置为“关闭”。我已经检查了我的设置,默认情况下它们是“ on”的。
  14. https://stackoverflow.com/a/45776101/575530The URL太长。听起来不太可能,但我的总之还是很短。
  15. https://stackoverflow.com/a/53550402/575530组织帐户存在类似问题。我的是个人帐户。
  16. https://stackoverflow.com/a/53533759/575530大小写:INDEX.md文件。我的都是小写。
  17. https://stackoverflow.com/a/50826980/575530在分支之间快速切换。我只有一个分支。
  18. https://stackoverflow.com/a/51123738/575530转到设置,切换为母版,然后单击保存。我不明白这一点。

其中一些建议是随机的,我怀疑它们是在GitHub编译页面时刚刚过去的,但是我还是尝试了一下。没有运气。

如何修复我的存储库,以便GitHub Pages工作?

0 个答案:

没有答案