正常情况下如果只买了域名, 但是没有买云主机. 所以可以利用现有的 Page 服务并让域名跳转到该 Page 来实现。
码云(自定义域名是收费的,但是服务文档.推荐)
码云pro版自定义域名解析
Step 1、绑定你已备案的域名
Step 2、通过解析域名的DNS服务商,配置域名 www.feipig.fun
解析到 gitee.gitee.io
coding 自定义域名解析(付费,不推荐)
首先,我们登录Coding,依次选择 代码——> Pages服务,在 自定义域名处填写自己的域名. 整个过程非常的舒适. 推荐使用.
记得绑定前请在域名 DNS 设置中添加一条 CNAME 记录 www.feipig.fun
指向 用户.coding.me
GitHub Page 自定义域名解析
方法其实也是类似.
DNS管理中添加CNAME和A解析记录,使www网址和@(即本身)都指向自己的github page;
然后在自己的github仓库中添加CNAME文件,其中填入购买的域名。或者可以在仓库的settings中设置Custom Domain设置好自己的域名,github会自动添加CNAME文件。
建立跳板页
可以在对应的项目中, 简单建立一个index.html
即可.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<!-- 加入一些不要缓存的头 -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<!-- 有的服务器会被认为是301, 会被缓存了就很尴尬, 所以作为备用手段 -->
<meta http-equiv="Refresh" content="3; url=https://kailee.gitee.io/"/>
</head>
<body>
<script>window.location.href = "https://kailee.gitee.io/"</script>
</body>
</html>
方式一: 以码云为主, 且使得码云, coding, github 三码合一
- 码云为主体, 最终都指向它 https://kailee.gitee.io/
- coding 设置跳转
用户.coding.me ->
https://kailee.gitee.io/ - github page 用同样的方式设置跳转. http://acc8226.github.io -> https://kailee.gitee.io/
实际上使用的还是 码云 的服务, 但对外展示可以以 http://acc8226.github.io 为住, 毕竟 b 格在.
方式二: 以 github page 为主, 使用免费的 CNAME 指向域名, 且三码合一
- 码云 https://kailee.gitee.io/ -> http://acc8226.github.io
- coding 设置跳转
用户.coding.me
-> http://acc8226.github.io - github page 为主 http://acc8226.github.io
参考
零基础 Hexo + Coding、Github、码云(oschina)搭建个人博客(三) —— 绑定个人域名
https://wanghl.com/2017/01/06/2017010601/