共计 704 个字符,预计需要花费 2 分钟才能阅读完成。
因服务器不在国内的缘故,网站没有很好的速度,所以苦苦钻研加速之道。
Github
创建 Github 仓库
- 登录到 Github 之后点击右上角头像旁边的「+」,选择 new repository 创建新仓库
- 在仓库创建页面,填写仓库名,其他默认就行
通过 Git 同步到 Github
进入要托管的网站目录,创建.gitignore 文件(https://www.toptal.com/developers/gitignore):
cd 站点目录
touch .gitignore
vi .gitignore
把以下内容复制到.gitignore:
## 排除文件目录
*.php
*.html
*.xml
*.po
*.mo
*.json
*.txt
*.htaccess
*.zip
*.gz
*.phtml
*.html.gz
*.bmp
*.md
!/wp-content/cache/
!/wp-content/upload/
通过 Git 同步静态文件到 Github:
git init #初始化 git
git add -A wp-content wp-includes .gitignore # 添加要上传的文件
git commit -m "Up statics" # 提交说明,可以自定义
git remote add origin 自己仓库的 SSH 链接
git push -u origin master
WP Super Cache
安装好 WP Super Cache 插件后,在 CDN 一栏:
1、开启 CDN 支持勾选上
2、Off-site URL 填入:https://cdn.jsdelivr.net/gh/ 用户名 / 仓库名 @分支
jsDelivr
访问网站,查看图片和 js 地址,变成 https://cdn.jsdelivr.net 地址开头,说明成功了。
正文完