nginx允许跨域
时间: 2023-06-29 17:19:50 浏览: 100
是的,Nginx可以通过配置允许跨域请求。可以使用add_header指令添加Access-Control-Allow-Origin和Access-Control-Allow-Methods响应头,允许来自指定域名的跨域请求,并允许特定的HTTP方法。示例配置如下:
```
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
try_files $uri $uri/ /index.php?$query_string;
}
```
这个配置允许所有域名的跨域请求,允许GET、POST和OPTIONS方法,并添加了常见的请求头。注意,在生产环境中应该精确指定允许跨域的域名。
阅读全文