用户访问 -> 域名解析 -> github page 跳转 -> 真实地址
🚀 https://www.cnblogs.com/tssc/p/9204533.html(原文)
创建 github 账号
以账号名开始的 public 仓库
创建静态页面文件 index.html,并写上对应代码,尝试用 github账号.github.io 访问
https://github.com/yinzhuoqun/yinzhuoqun.github.io
http://yinzhuoqun.com(未在国内备案)
假如你有海外服务器,也能达成用未备案的域名跳转到 自己的博客园等。方法如下:
server {
listen 80;
# server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
# root html;
# index index.html index.htm;
# proxy_pass https://xieboke.net;
rewrite /(.*) https://xieboke.net/$1; # 配置这个
}