众所周知,要使用国内免费CDN加速自己的网站要求网站域名已备案。
之前张戈分享了一个不用备案也可以用国内CDN的方法,前提是要准备个其他已经备案域名的二级域名:
原理:服务器新增一个vhost绑定已经备案域名的二级域名对主站内容做反向代理(只代理静态文件),然后用这个已备案域名去接入CDN即可,实际上两个站用的是相同目录。
今天对某个未备案域名的网站进行了部署,记性不好,记录一下步骤以备将来再次使用:
1、在你主网站的配置文件中加入以下配置文件
#绑定一个已备案二级域名,反向代理静态资源,在这个反向代理上面套一层国内CDN,解决未备案无法使用国内CDN问题 server { listen 80; # HTTPS配置略 server_name static.beiandomAIn.com; # 改成你实际已备案的二级域名(这个就是新建主机时绑定的域名) index index.html index.htm index.php default.html default.htm default.php; root /data/wwwroot/yourwebsitedomain.com; # 需要CDN加速的网站 # 图片等静态资源请求代理到本地主站(关键配置) location ~* .*.(js|CSS|png|jpeg|jpg|bmp|ico|ogg|ogv|svg|svgz|eot|otf|woff|woff2|mp4|ttf|rss|atom|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ { add_header Access-Control-Allow-Origin *; # 解决字体跨站问题 add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,OPTIONS; proxy_pass http://127.0.0.1; # 如果是启用了https的网站,这里最好改成 https://127.0.0.1,避免主站加了非https协议的跳转配置,导致不成功。 proxy_set_header X-Forwarded-For $remote_addr; proxy_redirect off; proxy_set_header Host yourwebsitedomain.com; # 这里改为实际主站域名(必须) expires max; # 设置浏览器304缓存为最长期限 } # 为这个二级域名额外设置一个robots文件 location ~ (robots.txt) { rewrite /robots.txt /resrobots.txt last; # 在网站根目录新增一个resrobots.txt,内容和七牛CDN类似,禁止搜索引擎抓取非静态资源(怎么写接着看下面) } # 如果通过静态域名访问的是非静态资源,比如访问了我们的文章页面,则跳到主站对应的页面。 location / { if ( $request_uri !~* .*.(js|css|png|jpeg|jpg|gif|bmp|ico|ogg|ogv|svg|svgz|eot|otf|woff|woff2|mp4|ttf|rss|atom|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)) { rewrite ^(.*)$ $scheme://yourwebsitedomain.com$1 permanent; # yourwebsitedomain.com修改为实际主站域名 } } location ~ /. { deny all; access_log off; log_not_found off; } access_log off; }
2、根目录下新增一个resrobots.txt 内容如下:
User-agent: Allow: /robots.tx Allow: /wp-content Allow: /*.png Allow: /*.jpg Allow: /*.jpeg Allow: /*.gif Allow: /*.bmp Allow: /*.ico Allow: /*.js Allow: /*.css Disallow: /
3、在wordpress的functions.php文件中加入cdn代理设置
function QiNiuCDN(){ function Rewrite_URI($html){ $domain = 'yourwebsitedomain.com'; //填写主站域名,小数点前需要加上反斜杠转义 $static = 'res.zgboke.com'; //填写二级静态域名(使用第三方的CDN加速后,这里需要替换成你CDN的名字,而原来已备案的二级域名则为源站) //更多静态资源需要替换,可以将后缀加到后面的括号,使用分隔符分割 $html = preg_replace('/http(s|)://'.$domain.'/wp-([^"']*?).(jpg|png|gif|bmp|jpeg|css|js)/i','//'.$static.'/wp-$2.$3',$html); return $html; } if(!is_admin()){ ob_start("Rewrite_URI"); } } add_action('init', 'QiNiuCDN');