`nginx配置如下:``
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location ^~ /api {
proxy_pass http://localhost:8889;//表示localhost:8080/api开头的请求都转发到http://localhost:8889/api(为后端服务);
}
location / {
root html;
index index.html index.htm;
try_files $uri $uri/ /index.html last;
}//vue项目的配置,root为vue文件打包后的位置,其他配置不变。
}
请求成功如上图。请求地址的端口改为vue项目的端口即可