0%

  1. 在 GitHub Pages 仓库添加 CNAME 文件并填入将绑定的域名.

    例如: zhangbin.net

  2. 添加域名解析记录 @ 和 www CNAME 至github page链接

    例如: www —Cname—> ice5355.github.io

  3. 进入 GitHub Pages 仓库的 Settings 界面,选择边栏的Pages标签,在“Custom domain”中填入自己的域名,点击 Check 检查解析状态,成功后勾选Enforce HTTPS 开启强制HTTPS。
  4. 如果用的是hexo博客系统,需要在publish文件夹中添加CNAME 文件,否则会覆盖掉前面的设置。

前言

使用github pages服务搭建博客的好处有:

  1. 全是静态文件,访问速度快;
  2. 免费方便,不用花一分钱就可以搭建一个自由的个人博客,不需要服务器不需要后台;
  3. 可以随意绑定自己的域名,不仔细看的话根本看不出来你的网站是基于github的;
    阅读全文 »

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment