我已经开始使用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
。
怎么做?感谢
答案 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>