vue中history模式,刷新404问题

目录

vue设为history模式,开发环境刷新出现404

本地刷新无问题,生产环境404


vue设为history模式,开发环境刷新出现404

在webpack创建的项目中,

路由切换成history模式后,开发环境页面刷新会出现404的错误,找了很多原因,原来是本地proxy代理中,代理的地址错了,如下图修改:

vue中history模式,刷新404问题

 

本地刷新无问题,生产环境404,则为nginx的问题:在

nginx.conf 中配置如下

location / {

root /usr/share/nginx/html/dist;

index index.html index.htm;

try_files $uri $uri/ /index.html;

}

上一篇:A Child's History of England.202


下一篇:A Child's History of England.192