解决nginx+vue--502的问题
2022/4/21 7:18:41
本文主要是介绍解决nginx+vue--502的问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
当前的nginx配置如下:
server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; } location @router{ rewrite ^(.+)$ /index.html last; } }
遇到的问题是,当访问 http://localhost:80的时候是可以的,但访问除此之外的其他路由时遇到了502的问题
解决方案:+ try_files
server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; try_files $uri $uri/ @router; } location @router{ rewrite ^(.+)$ /index.html last; } }
即可
这篇关于解决nginx+vue--502的问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-26React入门教程:从零开始搭建你的第一个React应用
- 2024-12-25Vue2入门教程:轻松掌握前端开发基础
- 2024-12-25Vue3入门指南:快速搭建你的第一个Vue3项目
- 2024-12-25JS基础知识入门教程
- 2024-12-25React基础知识详解:从入门到初级应用
- 2024-12-25Vue3基础知识详解与实战指南
- 2024-12-25Vue3学习:从入门到初步掌握
- 2024-12-25Vue3入门:新手必读的简单教程
- 2024-12-23【JS逆向百例】爱疯官网登录逆向分析
- 2024-12-21Vue3教程:新手入门到实践应用