如何删除GitHub页面子域重定向?

时间:2018-08-29 00:59:17

标签: github subdomain url-redirection github-pages namecheap

我有一个Namecheap域,它是somedomain.example。我不小心将博客存储库中的somedomain.example/blog/更改为blog.somedomain.example。现在,即使我删除了CNAME记录并从GitHub页面设置中的设置中删除了自定义URL,我的somedomain.example/blog/仍被重定向到blog.somedomain.example

是否有任何方法可以删除此重定向并以默认方式使用它?

P.S我的gh-pages存储库中现在没有CNAME。

1 个答案:

答案 0 :(得分:1)

我有一个类似的问题。 就我而言,我只有分支:gh-pages(例如repo.github.io);

git branch -> * gh-pages

对我有用的是创建分支master;

git branch master ->
git branch -> gh-pages, * master
git push origin master

(实际上,我认为这是一个把戏)

只需确认在gh-pages中并且主要在master分支中没有没有CNAME文件

https://github.com/username/repo.github.io/blob/master/CNAME -> 404
https://github.com/username/repo.github.io/blob/gh-pages/CNAME -> 404

您可以测试您是否仍在通过cURLonline进行重定向;

e.g. http://redirectcheck.com/index.php

我希望这对您也有用。