宝塔部署vue前端项目 强制刷新页面显示Nginx Not Fount 404

解决方法:

在server配置文件内加上

location / {
   try_files $uri $uri/ @router;
   index index.html;
}

location @router {
    rewrite ^.*$ /index.html last;
}

就可以解决强制刷新页面404的情况了,防止以后遇见这种情况遗忘,特在此记录

你可能感兴趣的:(宝塔面板,vue)