为什么说一个站不优化就等于一个人做整个团队的事务导致项目进展慢,网站也是如此
图片、静态文件、php分离加速,加载速度并不是很快但是很协调比单个网站加载速度快许多
一、图片单域名加载设置上传文件路径和域名
以下代码添加在主题目录:functions.php
//wordpress上传的图片保存到二级域名,找回上传设置uploads是存储目录wp-content/uploads
if(get_option('upload_path')=='wp-content/uploads' ||get_option('upload_path')==null) {
update_option('upload_path',WP_CONTENT_DIR.'/uploads');
}
后台媒体设置如下:
二、静态文件分离加速,每个主题需添加的扩展名都不一样建议自己f12
以下代码添加在主题目录:functions.php
//1静态文件CDN加速
if ( !is_admin() ) {
add_action('wp_loaded','yuncai_ob_start');
function yuncai_ob_start() {
ob_start('yuncai_qiniu_cdn_replace');
}
function yuncai_qiniu_cdn_replace($html){
$local_host = 'https://www.wwttl.com'; //博客域名
$qiniu_host = 'https://cdn.wwttl.com'; //CDN域名
$cdn_exts = 'svg|png|jpg|gif|ico|js'; //扩展名(使用|分隔)
$cdn_dirs = 'wp-content|wp-includes|wp-admin'; //目录(使用|分隔)
$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;
}
}
三、推荐使用一款强大的缓存插件:WP Super Cache
配置如下
总结:在网站建设先做好优化日后再次优化做好基础,即使优化后速度不是很显著,当后运营有佳拥有大量流量时你会感谢我