我是靠谱客的博主 健忘花瓣,最近开发中收集的这篇文章主要介绍Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

1

2

3

4

5

location / {

        root /data/nginx/html;

        index index.html index.htm;

        error_page 404 /index.html;

}

方案二

1

2

3

4

5

6

7

8

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)

1

2

3

4

5

6

7

8

9

10

11

12

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;

    }

}

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

1

2

https://blog.csdn.net/u011025083/article/details/80352301

https://www.jianshu.com/p/02ad1f919471

最后

以上就是健忘花瓣为你收集整理的Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法的全部内容,希望文章能够帮你解决Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(72)

评论列表共有 0 条评论

立即
投稿
返回
顶部