下面由wordpress教程栏目给大家介绍wordpress非根目录部署nginx关键配置方法,希望对需要的朋友有所帮助!
wordpress非根目录部署nginx关键配置
在非根目录部署wordpress时/wp-json/wp/v2/posts这样的rest Api会访问不了
增加nginx配置(假设部署在wp文件夹下)
1
2
3
4
5
6
7
8
location /wp {
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite ^/wp/(.*)$ /wp/index.php;
}
}