我有一个Namecheap域名,它是somedomain.example
。我不小心改变了博客存储库中的somedomain.example/blog/
到blog.somedomain.example
。现在,即使我删除了我的CNAME
记录并从GitHub页面设置中的设置中删除了自定义URL,我的somedomain.example/blog/
仍然被重定向到blog.somedomain.example
。
有没有办法删除此重定向并使用它的默认方式?
P.S我的gh-pages存储库中现在没有CNAME。
我有一个类似的问题。在我的情况下,我只有分支:gh-pages
(例如repo.github.io);
git branch -> * gh-pages
那对我有用的是创建分支:master
;
git branch master ->
git branch -> gh-pages, * master
git push origin master
(事实上我觉得这是一招)
只需确认gh-pages
中没有CNAME文件,主要是在master
分支中。
https://github.com/username/repo.github.io/blob/master/CNAME -> 404
https://github.com/username/repo.github.io/blob/gh-pages/CNAME -> 404
你可以测试你是否仍然通过cURL
或online
重定向;
e.g. http://redirectcheck.com/index.php
我希望这也适合你。