美文网首页
nginx 解决跨域(笔记)

nginx 解决跨域(笔记)

作者: 驴不与红鲤鱼 | 来源:发表于2021-02-05 11:49 被阅读0次
    image.png
    location / {
    root html;
    index index.html index.htm;
    try_files uriuri/ /index.html;
    }
    location /api/ {
    rewrite ^/b/(.*)/1 break;
    proxy_pass http://IP:端口/;
    }

    相关文章

      网友评论

          本文标题:nginx 解决跨域(笔记)

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