vue项目单独部署nginx服务器,刷新404
1.设置好项目根目录
2.伪静态设置
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.html last; break;
}
}
1.设置好项目根目录
2.伪静态设置
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.html last; break;
}
}