解决项目上线后的刷新页面丢失的问题

URL重写

location /{
try_files $uri /index.html;
index index.html index.htm index.php;
}

Nginx代理

location ^~/home/{
rewrite ^/home/(.*)/$1 break;
proxy_pass https://home-api.abc.com/home/;
}

你可能感兴趣的:(vue)