最近由于使用wordpress网站数据量过大,导致网站特别卡!所以就想着是不是可以搭建一个二级目录网站,既能不损失权重,又可以让网站速度快一点,所以就想到了用pbootcms程序
搭建完成以后发现,伪静态问题需要解决!
所以就通过搜索找到了一篇文章,发现基本上可以拿来使用!非常感谢作者,对方是双pbootcms网站,我是wordpress+pbootcms组成
所以直接在wordpress伪静态下面添加pbootcms网站伪静态规则就行了
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?p=$1 last;
}
}
location /test/ {
if (!-e $request_filename){
rewrite ^/test/(.*)$ /test/index.php?p=$1 last;
}
}