nginx加上这段配置试下
location /{ index index.html; try_files $uri $uri/ /index.html; #根据vue-router路由history特性,这句一定要配置,否则会出现404问题 }
如果不行,用下面这段
location /{
index index.html; error_page 404 /index.html; }
讨论(1)