如何将github页面指向自定义html主页

时间:2016-03-21 20:43:14

标签: git github jekyll github-pages

我已经开始使用GutHub-Pages了。我正在使用this demo,我的gh-pages存储库具有以下结构:

gh-pages (repo)
+-site
| +-about.md
| +-_config.yml
| +-index.html
+-notes.md

我希望htts://<username>.github.io/<repo>指向site/index.html

怎么做?感谢

3 个答案:

答案 0 :(得分:0)

有关如何将任何github页面重定向到另一个页面的说明,请参阅https://help.github.com/articles/redirects-on-github-pages/

如果您希望查看者在访问site/index.html时看到github页面上托管的index.html,您需要与拥有site DNS的任何人交谈。

答案 1 :(得分:0)

  

我希望htts://<username>.github.io/<repo>指向site / index.html。

您可以编写一个简单的html,重定向到所需的页面

<html>
  <head>
    <META http-equiv="refresh" content="0;URL=/site/index.html">
  </head>
</html>

答案 2 :(得分:0)

/site.index.html中设置permalink: /。[/ p>