回6楼yinjunyi的帖子
wordpress的PHP程序读取非常慢,建议你用镜像市场里面的杭州云集通公司那个wordpress博客平台,它集成了opcache内存加速,就是它会把PHP文件缓存到服务器内存中去,打开速度提高1倍不止
http://bbs.aliyun.com/read/244047.html?spm=5176.7189909.0.0.E5RuT9&page=3看37楼我的对比,我原先wordpress打开也很慢,有时候打开6-8s才打开,现在基本最长不超过1s
-------------------------
Re网站访问速度非常慢,域名响应时间长达4秒,求助!
另外js.css文件可以放到又拍云或七牛的CDN上去,很久不打开再打开网站速度也更快些,在wordpress主题里面的functions.php增加如下代码
add_action('wp_loaded','itchen_ob_start');
function itchen_ob_start() {
ob_start('aliyun_cdn_replace');
}
function aliyun_cdn_replace($html) {
$local_host = 'http://你的域名'; //带http
$aliyun_host = 'http://又拍云或七牛的CDN域名'; //带http
$cdn_exts = 'js|css';
$cdn_dirs = 'wp-includes|wp-content';
$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, $aliyun_host . '/$1$4', $html);
} else {
$regex = '/' . str_replace('/', '\/', $local_host) . '\/([^\s\?\\\'\"\;\>\<]{1,}.(' . $cdn_exts . '))([\"\\\'\s\?]{1})/';
$html = preg_replace($regex, $aliyun_host . '/$1$3', $html);
}
return $html;
}
当然前提是你在又拍云或七牛CDN做好回源调试
-------------------------
回4楼yinjunyi的帖子
wordpress不要用win系统,用Linux才快