Use Github pages on multiple repositories when one has a custom CNAME already?

I have a Github repository set up to host a small static site. The repository that hosts this is in the following format:

username.github.io

This repository is setup to use a custom domain and has a CNAME file to do so properly. This repository works exactly as expected.

Now I want to set up a project page and utilize the gh-pages branch for a different repository. When I do this, though, the CNAME in the first repository seems to apply and I am redirected to example.com/REPOSITORYNAME instead of using the expected username.github.io/projectname associated with this separate repository.


How can I continue to use the username.github.io repository with a custom domain and the gh-pages branch on a different repository without redirecting the gh-pages repository to the custom domain defined in the first repository?


As of Aug 2016, I don't think this is possible. (https://help.github.com/articles/custom-domain-redirects-for-github-pages-sites/)

The Github Pages help article states that

Project Pages site owned by a user account, such as username.github.io/projectname, will be Automatically redirected to a subdirectory of a User Pages site custom domain (user.example.com/projectname), unless a different CNMAE is specified, such as project.example.com

See Github pages - Disable custom domain redirection for all but a single site?

链接地址: http://www.djcxy.com/p/89074.html

上一篇: 域不会重定向到子

下一篇: 已经有自定义CNAME时,在多个存储库中使用Github页面?