对于VUE的router[mode: history]模式在开发的时候,一般都不出问题。是因为开发时用的服务器为node,Dev环境中自然已配置好了。
解决方法[官方推荐]:
location / {
root D:\Test\exprice\dist;
index index.html index.htm;
try_files $uri $uri/ /index.html; # 增加此行解决404问题
location / {
root D:\Test\exprice\dist;
index index.html index.htm;
try_files $uri $uri/ /index.html; # 增加此行解决404问题
本文标题:[Nginx] Vue路由history模式 - nginx配置
本文链接:https://www.haomeiwen.com/subject/byfqjqtx.html
网友评论