我知道你能夠創建子域重定向到不同的存儲庫,如:您可以將多個自定義域添加到多個Github存儲庫嗎?
example.com
foo.example.com
但你可以這樣做:
example.com > foobar.github.io
differentdomain.com > foobar.github.io/different-repository
還是有一定的辦法有一個新的自定義域重定向到specfiic存儲庫?
我知道你能夠創建子域重定向到不同的存儲庫,如:您可以將多個自定義域添加到多個Github存儲庫嗎?
example.com
foo.example.com
但你可以這樣做:
example.com > foobar.github.io
differentdomain.com > foobar.github.io/different-repository
還是有一定的辦法有一個新的自定義域重定向到specfiic存儲庫?
要讓Github Pages在foobar.github.io
您需要一個用戶(或「organiaztion」)帳戶github.com/foobar
和存儲庫github.com/foobar/foobar.github.io
。
要讓Github頁面在foobar.github.io/different-repository
你需要一個分支gh-pages
在github.com/foobar/different-repository
。
配置example.com
顯示foobar.github.io
您添加DNS記錄A
到指向Github Pages IP域和添加文件github.com/foobar/foobar.github.io/CNAME
與內容「example.com」(不要忘了添加,提交和推送)。
配置differentdomain.com
顯示foobar.github.io/different-repository
您添加DNS記錄A
到指向Github的頁面IP域中及gh-pages
分支內容「differentdomain.com」(添加,提交,推)添加文件github.com/foobar/different-repository/CNAME
。