美文网首页
[Nginx] Vue路由history模式 - nginx配置

[Nginx] Vue路由history模式 - nginx配置

作者: 卓灬不凡 | 来源:发表于2019-01-20 23:48 被阅读0次
对于VUE的router[mode: history]模式在开发的时候,一般都不出问题。是因为开发时用的服务器为node,Dev环境中自然已配置好了。

解决方法[官方推荐]:

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