在你的其他配置项基础之上还需要添加下面的代码:
server {
#用于管理界面的处理
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
location / {
#/wordpress是你的子目录名字,没有子目录就可以不用写
try_files $uri /wordpress$uri/ /wordpress/index.php?q=uri&$args;
}
}
在你的其他配置项基础之上还需要添加下面的代码:
server {
#用于管理界面的处理
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
location / {
#/wordpress是你的子目录名字,没有子目录就可以不用写
try_files $uri /wordpress$uri/ /wordpress/index.php?q=uri&$args;
}
}