目录
vue设为history模式,开发环境刷新出现404
在webpack创建的项目中,
路由切换成history模式后,开发环境页面刷新会出现404的错误,找了很多原因,原来是本地proxy代理中,代理的地址错了,如下图修改:
本地刷新无问题,生产环境404,则为nginx的问题:在
nginx.conf 中配置如下
location / {
root /usr/share/nginx/html/dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}