美文网首页
Vue history模式的nginx配置

Vue history模式的nginx配置

作者: SevChen | 来源:发表于2021-02-07 15:10 被阅读0次

    1. 项目直接部署到根目录时

    location ^~ / {
            alias /bgi/sdb2/frontend/test/dist;
            index index.html; #默认访问的文件
            try_files $uri $uri/ /index.html; #目录不存在则执行index.html
    }
    

    2. 项目部署到子路径时

    假设子路径为 /test/

    location ^~ /test {
            alias /bgi/sdb2/frontend/test/dist;
            index index.html; #默认访问的文件
            try_files $uri $uri/ /test/index.html; #目录不存在则执行index.html
    }
    

    3. 以上配置同样适用于reactjs的项目

    相关文章

      网友评论

          本文标题:Vue history模式的nginx配置

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