码迷,mamicode.com
首页 > Web开发 > 详细

Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法

时间:2018-12-10 18:10:42      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:outer   files   blank   request   oca   pre   ast   file   ati   

方案一 (这种方式容易被第三方劫持)

location / {
        root /data/nginx/html;
        index index.html index.htm;
        error_page 404 /index.html;
}

方案二

location / {
    root /data/nginx/html;
    index index.html index.htm;
    if (!-e $request_filename) {
        rewrite ^/(.*) /index.html last;
        break;
    }
}

方案三 (vue.js官方教程里提到的https://router.vuejs.org/zh-cn/essentials/history-mode.html

server {
    listen 80;
    server_name localhost;
    root /data/wwwroot/dist;
    location / {
        try_files $uri $uri/ @router;
        index index.html index.htm;
    }
    location @router {
        rewrite ^.*$ /index.html last;
    }
}

参考以下两位大神的博客:

https://blog.csdn.net/u011025083/article/details/80352301
https://www.jianshu.com/p/02ad1f919471

  

Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法

标签:outer   files   blank   request   oca   pre   ast   file   ati   

原文地址:https://www.cnblogs.com/a120608yby/p/10096948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!