Nginx host wordpress无法找到restapi的问题

server {
        listen        80;
        server_name  localhost;
        root   "C:/Users/pc/source/repo/WordPress";
        location / {
            index index.php index.html;
            error_page 400 /error/400.html;
            include C:/Users/pc/source/repo/WordPress/nginx.htaccess;
            autoindex  off;
        }

        location ~ ^/wp-json/ {
            rewrite ^/wp-json/(.*?)$ /?rest_route=/$1 last;
        }
        
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}

在nginx配置文件中,插入标注代码,把这个route规则的请求地址 原封不动 的映射到php服务,即可解决该问题。

Nginx host wordpress无法找到restapi的问题

上一篇:c# picturebox 幻灯片效果


下一篇:[Swagger]Unable to resolve service for type 'Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionGroupCollectionProvider' while attempting to activate