Super Static Cache是一款WordPress缓存插件,可以将WordPress页面转化为静态页面储存,当我们选择“Rewrite模式”时,需要在服务器上添加一条伪静态规则,分享基于Apache和Nginx下的Super Static Cache插件伪静态规则。
Apache伪静态规则
将下方规则复制到.htaccess保存,上传到云服务器或虚拟主机根目录即可。
#BEGIN Super Static Cache
#Must the First Rewrite Rule
RewriteEngine On
RewriteBase /
RewriteRule ^super-static-cache/ - [L]RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{DOCUMENT_ROOT}/super-static-cache/$1 -f
RewriteRule ^(.*)$ /super-static-cache/$1 [L]RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{DOCUMENT_ROOT}/super-static-cache/$1/index.html -f
RewriteRule ^(.*)$ /super-static-cache/$1/index.html [L]
header set Content-Encoding gzip
header set Content-Type text/html
#End Super Static Cache
Nginx伪静态规则
#BEGIN Super Static Cache
location / {if (-f $request_filename) {
break;
}
if ($uri ~ /(.*)$){
set $wpuri $1;
set $sscfile $document_root/super-static-cache/$1;
}
set $ssc Y;
if ($query_string !~ .*=.*){
set $ssc "${ssc}Y";
}
if ($request_method != "POST"){
set $ssc "${ssc}Y";
}if (-f $sscfile){
set $ssc "${ssc}F";
}
if (-f $sscfile/index.html){
set $ssc "${ssc}I";
}if ($ssc = YYYF){
rewrite . /super-static-cache/$wpuri break;
}
if ($ssc = YYYI){
rewrite . /super-static-cache/$wpuri/index.html break;
}if (!-e $request_filename){
rewrite . /index.php last;
}
}
#End Super Static Cache
注意:Rewrite模式 (推荐)是推荐的模式,Rewrite模式会把缓存内容放到一个目录,缓存成功之后,网站不再依赖数据库,但是您需要在服务器上添加一条伪静态规则。
2023腾讯云服务器超便宜,这个价格太可以了,抓紧上车!
- 2核2G3M服务器30元/3个月:点此直达
- 阿里云2核2G3M带宽108元一年,2核4G...
- 2核2G3M服务器95元一年:点此直达
- 2核2G4M服务器112元/1年:点此直达
- 2核2G4M服务器396元/1年:点此直达
- 2核4G5M服务器168元/3年:点此直达
- 2核4G5M服务器628元/3年:点此直达
- 4核8G12M服务器446元/1年 518元15个月:点此直达
- 8核16G18M服务器1668元/15个月
- 16核32G28M服务器3468元/15个月
注意:以上特价轻量服务器限制条件为“产品首单特惠”,如果你的腾讯云账号已经是老用户,建议重新注册一个腾讯云账号,如果你是新用户符合条件,那么无脑入,这个CPU内存带宽配置,价格确实便宜,值得买!
2023云服务器价格出炉,又降价了!
阿里云:阿里云2核4G服务器6M带宽68元一年起(价格便宜多配置可选)
腾讯云:腾讯云2核4G8M服务器70元一年(查看更多配置报价)
华为云:2023华为云优惠活动云服务器39元一年起(查看更多配置报价)
Warning: A non-numeric value encountered in /www/wwwroot/lamplnmp.com/wp-content/themes/web/functions/theme-functions.php on line 584
Super Static Cache启动后评论不正常
2021-03-27 下午3:10