WordPress 子目录安装 Nginx 配置
WordPress 是支持子目录安装的,一个子目录安装一个 WordPress,不过就是 Nginx 的规则有点不同:
location /subdir/ {
try_files $uri $uri/ /subdir/index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
把上面的 subdir 改成你需要的子目录名称即可。
真诚赞赏,手留余香