美文网首页
nginx配置Vue虚拟路面

nginx配置Vue虚拟路面

作者: nbicelove | 来源:发表于2020-04-03 15:25 被阅读0次

    nginx在转发html项目时候遇到虚拟路径问题,可以用try_files 来解决

    location /project {

                alias /icelove/webapps/html/project;

                index index.html index.htm;

                try_files $uri $uri/ /project/index.html;

                include proxy.conf;

            }

    相关文章

      网友评论

          本文标题:nginx配置Vue虚拟路面

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