如何在 github 页面中将 http://user.github.io/repo 更改为 http://customdomain.com/myrepo?
我尝试查看文档,但它没有谈论此案例。
AFAIK,要拥有自定义域名,您必须在 GitHub 存储库的根目录中创建一个名为
CNAME
的文件。
文件内容应该是这样的(这只是一个例子):
my-website.com
现在将重定向到
https://user.github.io/<repo-name>
,而不是使用 my-website.com
。