解决前后端分离业务中,前端访问后端404的Nginx配置。

server {
        listen        80;
        server_name  localhost;
        root   "E:/plan";
        location / {
            index index.php index.html error/index.html;
        }
        location /api/{
            proxy_pass http://localhost:8000;
   }
}

这样前端访问后端/api/路径时会被自动转发至8000端口下的/api/

posted @ 2022-11-19 09:53  skywa1ker  阅读(1027)  评论(0编辑  收藏  举报