WP-Super-Cache 作为 WordPress 的老牌静态缓存插件,它在 WordPress.Org 的一个角落一直有一份 Nginx 伪静态规则(Nginx – WordPress.org Forums)。
配置后可绕过 PHP 直接由 Nginx 返回 HTML 页面,能大大提高网站的并发能力和速度。

这份规则如下,替换 WordPress 原本的伪静态规则即可(已修改同时兼容HTTPS/HTTP,并增加是否命中的 Nginx-Static 头)。
# WP Super Cache 规则
set $cache_uri $request_uri;
set $nginx_static 'BYPASS For File';
# POST 请求不读取缓存
if ($request_method = POST)
{
set $cache_uri 'null cache';
set $nginx_static 'BYPASS For POST';
}
# 查询请求不读取缓存
if ($query_string != "")
{
set $cache_uri 'null cache';
set $nginx_static 'BYPASS For Query';
}
# 特定页面不读取缓存
if ($request_uri ~* "(/wp-admin/|/xmlrpc.php|/wp-(app|cron|login|register|mail).php|wp-.*.php|/feed/|index.php|wp-comments-popup.php|wp-links-opml.php|wp-locations.php|sitemap(_index)?.xml|[a-z0-9_-]+-sitemap([0-9]+)?.xml)")
{
set $cache_uri 'null cache';
set $nginx_static 'BYPASS For URL';
}
# 特定Cookie不读取缓存
if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_logged_in|woocommerce_items_in_cart|woocommerce_cart_hash|wptouch_switch_toogle")
{
set $cache_uri 'null cache';
set $nginx_static 'BYPASS For Cookie';
}
# 判断缓存是否存在
if (-f $document_root/wp-content/cache/supercache/$http_host/$cache_uri/index-https.html)
{
set $nginx_static 'HIT';
}
if (-f $document_root/wp-content/cache/supercache/$http_host/$cache_uri/index.html)
{
set $nginx_static 'HIT';
}
location /
{
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index-https.html /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php?$args;
}
add_header Nginx-Static $nginx_static;
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
如遇夸克/百度网盘链接失效,欢迎加QQ群【页脚加群二维码】联系群主补链!
© 版权声明
本站资源采集于互联网,仅供学习交流【侵删】。邮箱:chaowan.168@foxmail.com
THE END

![[一键安装] 鸣潮单机版 一鍵安裝 (最新秦鳴) 亲测可玩 亲测可玩 亲测可玩-七玩网](http://static.527wan.top/wp-content/uploads/replace/acbab573f6c73efe59059fff40c027f7.png)



![[端游单机] 原神- (V5.3+V5.0+V4.7+V4.6+V4.5+V4.01)单机(本地)剧情至尊整合版-七玩网](http://static.527wan.top/wp-content/uploads/2025/02/b5767abdfc20250222194201.png)

![[一键安装] 【手游】分享一批安卓手游内购版等大全合集-七玩网](https://static.527wan.top/wp-content/uploads/replace/e6e23a06fefa6cc893a0551d08748100.png)
![[一键安装] 我修改的义哥征途单机版-七玩网](https://static.527wan.top/wp-content/uploads/2024/04/20240421023757282-Beg5NT.jpg)
![[手工架设] 大话西游物集345精仿碧海端,玩着还行-七玩网](https://static.527wan.top/wp-content/uploads/replace/0d9605b1a5024fdd6ecec89948ca0a80.png)
![[手工架设] 【2024.6.23】某道手游【6周年阵营端】一机详细视频搭建教程-七玩网](https://static.527wan.top/wp-content/uploads/replace/81815afe9b12c5087bf0b2e16b247c23.jpeg)
![[手游源码] 1655互通魔域【龙哥90级神火龙年宠全特效挖宝地图终极版】-七玩网](https://static.527wan.top/wp-content/uploads/replace/7075394a1b1808c3cb24860c4b09d6e9.png)


暂无评论内容