欢迎来到云服务器

服务器租用

WP Super Cache在Nginx下安装要领和URL重写(伪静态)法则配置

WP Super Cache是今朝缓存插件利用的最多的一个,在我的WordPress缓存优化中并未提起,但并不代表WP Super Cache欠好。出格是nginx下面,其实是由于WP Super Cache在nginx安装利用,和URL重写即伪静态法则相对在apache下面更难配置。

安装与配置WP Super Cache

在WordPress仪表盘插件栏搜索WP Super Cche,,安装即可。

WP Super Cache在Nginx下安装要领和URL重写(伪静态)法则配置

安装WP Super CacheWP Super Cache在Nginx下安装要领和URL重写(伪静态)法则配置

启用缓存成果 (推荐)

启用后,会呈现提示:

Mod rewrite 模块大概未安装!

貌似 mod_rewrite 模块尚未安装。也许环境并不是这样,尤其是当您不利用 Apache 作为处事器措施的时候。请查抄
mod_rewrite 模块是否被加载。这对付 Super Cache 的静态文件的挪用是必须的。不外您可以利用 PHP
缓存模式可能传统模式运行本插件。

不消管这个提示,这是针对apache处事器的提示,nginx下面不消管它。

WP Super Cache在Nginx下安装要领和URL重写(伪静态)法则配置

高级配置勾选项 WP Super Cache的nginx url重写法则

将本来的nginx重写法则

try_files $uri $uri/ /index.php?$args;

修改为

try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php?$args ;

server {
    ....
}

中间插入

        # WP Super Cache rules.
        # Designed to be included from a 'wordpress-ms-...' configuration file.
        set $cache_uri $request_uri;
        # POST requests and urls with a query string should always go to PHP
        if ($request_method = POST) {
                set $cache_uri 'null cache';
        }
        if ($query_string != "") {
                set $cache_uri 'null cache';
        }
        # Don't cache uris containing the following segments
        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';
        }
        # Don't use the cache for logged in users or recent commenters
        if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_logged_in") {
                set $cache_uri 'null cache';
        }
        # START MOBILE
        # Mobile browsers section to server them non-cached version. COMMENTED by default as most modern wordpress themes including twenty-eleven are responsive. Uncomment config lines in this section if you want to use a plugin like WP-Touch
        # if ($http_x_wap_profile) {
        #        set $cache_uri 'null cache';
        #}
        #if ($http_profile) {
        #        set $cache_uri 'null cache';
        #}
        #if ($http_user_agent ~* (2.0 MMP|240x320|400X240|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|Googlebot-Mobile|hiptop|IEMobile|KYOCERA/WX310K|LG/U990|MIDP-2.|MMEF20|MOT-V|NetFront|Newt|Nintendo Wii|Nitro|Nokia|Opera Mini|Palm|PlayStation Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|SHG-i900|Small|SonyEricsson|Symbian OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|webOS|Windows CE|WinWAP|YahooSeeker/M1A1-R2D2|iPhone|iPod|Android|BlackBerry9530|LG-TU915 Obigo|LGE VX|webOS|Nokia5800)) {
         #       set $cache_uri 'null cache';
        #}
        #if ($http_user_agent ~* (w3c |w3c-|acs-|alav|alca|amoi|audi|avan|benq|bird|blac|blaz|brew|cell|cldc|cmd-|dang|doco|eric|hipt|htc_|inno|ipaq|ipod|jigs|kddi|keji|leno|lg-c|lg-d|lg-g|lge-|lg/u|maui|maxo|midp|mits|mmef|mobi|mot-|moto|mwbp|nec-|newt|noki|palm|pana|pant|phil|play|port|prox|qwap|sage|sams|sany|sch-|sec-|send|seri|sgh-|shar|sie-|siem|smal|smar|sony|sph-|symb|t-mo|teli|tim-|tosh|tsm-|upg1|upsi|vk-v|voda|wap-|wapa|wapi|wapp|wapr|webc|winw|winw|xda |xda-)) {
          #      set $cache_uri 'null cache';
        #}
        #END MOBILE

千万不要插在

location / {
    ....
}

中间。

检讨是否生效

重启nginx,查察网页源码,底部是否增加了雷同如下的注释,假如有即代表乐成。

腾讯云代理

Copyright © 2003-2021 MFISP.COM. 国外vps服务器租用 梦飞云服务器租用 版权所有 粤ICP备11019662号