我有一个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
我希望这对你也有用。