VUE前端应用部署页面访问404问题

解决:

1、在vue项目中解决
 在入口文件index.html添加:

2、如果是部署在nginx上
在nginx的配置文件 nginx.config添加:

location = /index.html {

    add_header Cache-Control "no-cache, no-store";

}

如果是用nginx做反向代理的,这么加

location = /xx(xx为你的代理的项目名) {

    add_header Cache-Control "no-cache, no-store";

}

你可能感兴趣的:(vue.js,前端,javascript)