首页 > Windows开发 > 详细

Nginx host wordpress无法找到restapi的问题

时间:2021-04-12 22:43:29      阅读:23      评论:0      收藏:0      [点我收藏+]
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的问题

原文:https://www.cnblogs.com/leoric/p/14649337.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!