andyma 发表于 2016-7-19 11:43:19

lnmp下使用wp Super Cache的Mod_Rewrite缓存模式的方法

军哥,

   lnmp下的wp Super Cache的Mod_Rewrite缓存模式无法使用啊?老是提示模块没有安装,规则没有更新之类的,如何解决呢?

licess 发表于 2016-7-19 16:47:42

https://codex.wordpress.org/Nginx#WP_Super_Cache_Rules

wp官网上有设置的说明

andyma 发表于 2016-7-19 19:15:16

回复 2# 的帖子

军哥,

    谢谢您的回复,目前我的.conf配置文件里面内容是:

location / {
    try_files $uri $uri/ /index.php?$args;
    }
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

   请教一下:https://codex.wordpress.org/Nginx#WP_Super_Cache_Rules 上的代码如何加进去呢?谢谢!

licess 发表于 2016-7-20 09:15:59

回复 3# 的帖子

官网上的配置文件的内容存到 /usr/local/nginx/conf/ 下 存为 wpsc.conf
然后将虚拟主机的include wordpress.conf 换成 include wpsc.conf
重启nginx

andyma 发表于 2016-7-20 20:24:48

回复 4# 的帖子

军哥:

   我的虚拟主机已经有一个文件是:wordpress.conf了,且里面当前有如下内容:
location / {
    try_files $uri $uri/ /index.php?$args;
    }
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

我的疑问是:该如何把https://codex.wordpress.org/Nginx#WP_Super_Cache_Rules 上的代码内置到这里面去?放的位置?还是说干脆把wordpress.conf的内容全部不要,直接把https://codex.wordpress.org/Nginx#WP_Super_Cache_Rules 上的代码复制过去替换他们?

请指导!谢谢

licess 发表于 2016-7-21 09:56:18

回复 5# 的帖子

vim、winscp等编辑创建都可以 https://www.vpser.net/vps-howto 都有各种教程

andyma 发表于 2016-7-21 16:26:03

回复 6# 的帖子

军哥:
   您误会我的意思了,我不是不会编辑,我是想请教:我当前的配置文件wordpress.conf里面已经存在如下代码:
location / {
    try_files $uri $uri/ /index.php?$args;
    }
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
   https://codex.wordpress.org/Nginx#WP_Super_Cache_Rules 上的代码我应该放在上述代码里哪个位置?

licess 发表于 2016-7-21 18:08:17

回复 7# 的帖子

你这问题我在 #4 上都有明确的说明
页: [1]
查看完整版本: lnmp下使用wp Super Cache的Mod_Rewrite缓存模式的方法