解决前后端分离业务中,前端访问后端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/