美文网首页
vue打包之后,在Nginx访问,history模式

vue打包之后,在Nginx访问,history模式

作者: 夏夏夏夏顿天 | 来源:发表于2018-09-11 11:24 被阅读10次

    将Nginx配置改成下面形式,亲,测可行

    
    server {
    
    listen      80;
    
    server_name  localhost;
    
    index index.html;
    
    root /root/dist;
    
    location / {
    
        root /root/dist;
    
        try_files $uri $uri/ /index.html =404;
    
    }
    
    }
    
    

    相关文章

      网友评论

          本文标题:vue打包之后,在Nginx访问,history模式

          本文链接:https://www.haomeiwen.com/subject/troygftx.html