WordPress代码实现七牛云存储加速博客网站

这篇WordPress教程悟空搜会给大家讲解什么是七牛云存储,改如何实现七牛云存储给自己的博客/ 网站加速。

什么是七牛云存储?

其实就是OSS,对象存储,它可以加速我们网站的css、js、图片等内容,加速网站访问,提升用户体验。

运营一个博客/网站必然会用到图片媒体的文件,七牛云存储注册认证通过标准用户就可以得到10G的免费存储空间和免费10G的月流量,10G空间对于一般个人博客或小型站点基本上就够用了。

当然WordPress七牛云存储的插件也有很多,不过悟空搜今天分享的是免插件纯代码实现七牛云存储加速/博客网站


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    //七牛镜像存储
    if ( !is_admin() ) {
        add_action('wp_loaded','c7sky_ob_start');
        function c7sky_ob_start() {
            ob_start('c7sky_qiniu_cdn_replace');
        }
        function c7sky_qiniu_cdn_replace($html){
            $local_host = 'https://www.xxx.com'; //你的网站域名  http或是https根据你的站点更换
            $qiniu_host = 'https://img.xxx.com'; //你的七牛域名  http或是https根据你的站点更换
            $cdn_exts   = 'png|jpg|jpeg|gif'; //扩展名(使用|分隔)
            $cdn_dirs   = 'wp-content|wp-includes'; //目录(使用|分隔)
            $cdn_dirs   = str_replace('-', '\-', $cdn_dirs);
            if ($cdn_dirs) {
                $regex  =  '/' . str_replace('/', '\/', $local_host) . '\/((' . $cdn_dirs . ')\/[^\s\?\\'"\;\>\<]{1,}.(' . $cdn_exts . '))(["\\'\s\?]{1})/';
                $html =  preg_replace($regex, $qiniu_host . '/$1$4', $html);
            } else {
                $regex  = '/' . str_replace('/', '\/', $local_host) . '\/([^\s\?\\'"\;\>\<]{1,}.(' . $cdn_exts . '))(["\\'\s\?]{1})/';
                $html =  preg_replace($regex, $qiniu_host . '/$1$3', $html);
            }
            return $html;
        }
    }

使用方法

在七牛云申请免费的存储空间后,将上面代码添加到主题functions.php文件即可,更换对应的网站,即可。

原文链接:https://xiaohost.com/1216.html,转载请注明出处。
0