wordpress - NGINX+Wordpress 缓存悖论

标签 wordpress nginx caching

我正在运行 Wordpress + NGINX + PHM-FPM。我对我的 NGINX 配置进行了这些更改,这些更改取 self 遇到的最佳实践文章:

#Don't cache if there is a cookie called PHPSESSID
if ($http_cookie ~* "PHPSESSID"){
    set $no_cache 1;
}

#Don't cache if there is a cookie called wordpress_logged_in_[hash]
if ($http_cookie ~* "wordpress_logged_in_"){
    set $no_cache 1;
}

但是,这意味着在使用 PHPSESSID cookie 时,帖子页面(我的大部分点击)在请求时不会被缓存。帖子页面不包含每个用户的上下文,并且是通用的。有没有更好的方法只允许缓存帖子页面?也许使用“domain.com/yyyy/mm/dd/post-name”模式?

最佳答案

这是我通常用来专门禁用 Wordpress/Woocommerce 网站的 Fast-CGI 缓存的 block ,它可能会有所帮助:

#disabler
set $no_cache 0;

# POST requests and urls with a query string should always go to PHP
if ($request_method = POST) {
    set $no_cache 1;
}
if ($request_method = PATCH) {
    set $no_cache 1;
}
if ($query_string != "") {
    set $no_cache 1;
}   

# Don't cache uris containing the following segments
if ($request_uri ~* "/wp-admin/|/wp-login/|/xmlrpc.php|index.php|phpmyadmin|sitemap(_index)?.xml|sitemap$") {
    set $no_cache 1;
}   
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 $no_cache 1;
}
if ($request_uri ~* "(/wp-admin/|/cart/|/checkout/|/account/|/mon-compte/|/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 $no_cache 1;
}

# Don't use the cache for logged in users or recent commenters
if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in|postpass|wordpress_n$") {
    set $no_cache 1;
}

# Woocommerce
if ($request_uri ~* "/store.*|/cart.*|/my-account.*|/checkout.*|/addons.*|/panier.*|/paiement.*|/mon-compte.*") {
    set $no_cache 1;
}

if ( $arg_add-to-cart != "" ) { 
   set $no_cache 1;
}

# need more tests
#if ( $cookie_woocommerce_items_in_cart != "0" ) {  
#   set $no_cache 1;
#}

if ( $cookie_woocommerce_items_in_cart ) {
    set $no_cache 1;
}

这是我找到的多篇文章和要点的汇总。请注意,我通常在每个 block 中添加 header ,以查看测试期间禁用缓存的 header 。有些规则可能会重复。

注销后,用户仍然拥有一些 cookie,因此有时会绕过缓存。但在大多数情况下它都能正常工作。

当然,全部或部分实现需要测试。

我在Wordpress Nginx Helper中使用这个插件,这对于全局和有条件的清除非常有用。

关于wordpress - NGINX+Wordpress 缓存悖论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52208290/

相关文章:

css - 尝试为 Wordpress 站点 Logo 添加样式

java - 在 nginx 代理后面运行的 tomcat webapp 中的远程 IP

angular - 如何配置 nginx 来运行 angular4 应用程序

php - 如何从redis缓存键中获取数组值

caching - 检查服务 worker 缓存中是否存在 URL

php - Wordpress 上的特色图片

php - 是否可以在 WordPress 定制器中保存特定类别的选项?

node.js - 使用Nginx作为nodejs的反向代理忽略websockets

javascript - 缓存 AJAX 请求

mysql - 在 MySQL 中更改路径时出错