·设为首页收藏本站📧邮箱修改🎁免费下载专区💎积分✅卡密📒收藏夹👽聊天室
返回列表 发布新帖

WordPress WP-Super-Cache 缓存插件 Nginx 优化规则

128 1
发表于 2023-10-7 08:42:40 | 查看全部 阅读模式

马上注册,免费下载更多dz插件网资源。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
WP-Super-Cache 作为 WordPress 的老牌静态缓存插件,它在 WordPress.Org 的一个角落一直有一份 Nginx 伪静态规则(https://wordpress.org/support/article/nginx/#wp-super-cache-rules)。
配置后可绕过 PHP 直接由 Nginx 返回 HTML 页面,能大大提高网站的并发能力和速度。
这份规则如下,替换 WordPress 原本的伪静态规则即可(已修改同时兼容 HTTPS/HTTP,并增加是否命中的 Nginx-Static 头)。
  1. # 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;
复制代码
自用备存,转自wepublish的耗子博客。
我要说一句 收起回复
创宇盾启航版免费网站防御网站加速服务

评论1

婷姐楼主Lv.8 发表于 2023-10-7 08:43:25 | 查看全部
以前用过这个,电脑端没有问题,手机端就会出问题,最后搞不明白,换成简单模式了。
我要说一句 收起回复

回复

 懒得打字嘛,点击右侧快捷回复【查看最新发布】   【应用商城享更多资源】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

图文热点
创宇盾启航版免费网站防御网站加速服务
投诉/建议联系

discuzaddons@vip.qq.com

未经授权禁止转载,复制和建立镜像,
如有违反,按照公告处理!!!
  • 联系QQ客服
  • 添加微信客服

联系DZ插件网微信客服|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御

您的IP:3.143.23.38,GMT+8, 2024-11-22 12:11 , Processed in 0.327997 second(s), 81 queries , Gzip On, Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2024 Discuz! Team.

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表