如何将index.html设置为Github Pages页面的顶级页面?

时间:2017-12-04 05:05:27

标签: github github-pages

我创建了一个纯静态网站,并将其部署在username.github.io上。但是,每当我尝试访问该网站时,我都必须使用我的HTML index.html文件的直接路径来查看该网站。

是否可以设置username.github.io来显示索引文件?直接转到username.github.io vs username.github.io/index

提前致谢

2 个答案:

答案 0 :(得分:0)

  1. 创建一个新的仓库,将其命名为<username>.github.io
  2. 添加一个index.html文件。

文档可用here

答案 1 :(得分:-1)

official documentation非常清楚

cd username.github.io
echo "My Page" > index.html
git add index.html
git commit -a -m "First pages commit"
git push origin master

请注意,自Dec. 2016起,如果您没有README文件,index.html即可。