Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法
Posted a120608yby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法相关的知识,希望对你有一定的参考价值。
方案一 (这种方式容易被第三方劫持)
方案二
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问题的解决办法的主要内容,如果未能解决你的问题,请参考以下文章
nginx+vue+thinkphp5.1部署,解决前端刷新404,以及前端404解决后,后台又404的问题