CMS主题,首页的文章展示模块太多了,所以产生的sql查询也就多了,自然而然的加载速度也就很慢咯。尤其是数据展示量比较大的主题,那加载速度可不敢恭维了。那么如何加快解构比较复杂的wordpress cms主题的加载速度呢?这里给出两个方案。 - 方案一:在服务器上安装eaccelerator或memcached这类的数据库缓存脚本,并且安装相关的wordpress插件。(PS:这个方案适合VPS或者独立服务器的用户,如果小伙伴用的是虚拟主机那就别奢望这个方法了。)
- 方案二:为wordpress首页生成一个html文件跳过sql查询。(这个方法最有效,效果也很好,而且对小伙伴的空间配置要求不高,虚拟主机即可使用。)
实现方法1、新建一个名为index_html.php的文件并加入以下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <?php
if(file_exists("index.html"))
{
unlink("index.html");
}
$baseCmsUrl = "http://www.282865654.com";
$dmPageName = "index.php";
$stPageName = "index.html";
$tureStFile = dirname(__FILE__).'/'.$stPageName;
{
$body = file_get_contents($baseCmsUrl.'/'.$dmPageName);
$fp = fopen($tureStFile, 'w');
fwrite($fp, $body);
fclose($fp);
}
header("LocationbaseCmsUrl/index.html");
?>
|
将文件上传到网站根目录后直接打开浏览器访问该文件即可为WordPress首页生成html。 生成index.html文件后,我们要注意的是我们直接访问自己的域名和访问域名+index.html都会显示首页,这样会搜索引擎会认为你在制造重复页面,会给网站带来一定的负面影响,下面小V给出解决此问题的方法(访问index.html 301转跳到/,即去除掉首页url中的index.html): Apache:
1
2
3
4
| RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z{3,9}\ /index\.(php|html|htm)\ HTTP/
RewriteRule ^index\.(php|html|htm)$http://v7v3.com/ [R=301,L]
|
Nginx:
1
2
3
4
5
| location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.html/$1 last;
}
}
|
|