修改nginx多主机配置文件(通常在 /etc/nginx/conf.d/ 文件夹内)
在http与https中分别修改 location / 内配置,添加 try_files $uri $uri/ /index.php?$args;
与 rewrite /wp-admin$ $scheme://$host$uri/ permanent;
1 2 3 4 5 |
location / { try_files $uri $uri/ /index.php?$args; } rewrite /wp-admin$ $scheme://$host$uri/ permanent; |
修改完毕后保存退出,重启nginx服务。刷新页面即可