nginx vue页面再次刷新404
解决方法:
调整nginx的配置下:
//vue项目打包后存放的文件路径
root /opt/web;
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router{
rewrite ^.*$ /index.html last;
}
#代理后台接口
location /api/ {
proxy_pass http://portalServer/;
proxy_set_header Host $host:$server_port;
}