English 中文(简体)
nginx实用教程

nginx配置跨域接口访问
  • 时间:2023-06-01 17:44:46

nginx配置跨域接口访问


vue等前端框架接口访问跨域的时候,如果不想实用jsonp来访问跨域,跨域配置nginx来试下跨域访问


    location /api {
           proxy_pass http://xxx.xxx.com/;
    }
    
    location / {
          try_files $uri $uri/ @router;
          index index.html;
      }
      location @router {
          rewrite ^.*$ /index.html last;
      }