且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

当wordpress不在主目录中时,在nginx上重写wordpress url

更新时间:2023-02-24 09:56:15

您也可以尝试(不在位置限制中):

You can also try (not in a location block):

rewrite /wp-admin$ $scheme://$host$uri/ last;
rewrite ^/(wp-.*.php)$ /wp/$1 last;
rewrite ^/(wp-(content|admin|includes).*) /wp/$1 last;

/wp/替换为/site/或任何您的wordpress目录.

Exchange /wp/ for /site/ or whatever your wordpress directory is.

来源:

https://wordpress.stackexchange.com/questions/138648 /nginx-rules-for-subdomain-multisite-install-bedrock