利用GitHub实现域名跳转
注册一个 github账号
需要一个github账号,并且一定要取一个有意义的名字,这个后面会有大用。
创建仓库
这里面有很多需要注意的点
1.首先 Repository name 必须设置成 Github账号名.github.io 的形式,不然会报404
2.剩下的必须 选中public 和 Add a README file
仓库内容
新建index.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style media="screen"> * { margin: 0; padding: 0; } </style> </head> <body> </body> <script type="text/javascript"> window.location.href="https://blog.csdn.net/qq_40851232?type=blog"; </script> </html>
至此,全部的配置都结束啦,在网页上输入 bigbigni.github.io 即可进行跳转。