nginx禁掉Access-Control-Allow-Origin
时间: 2023-10-30 16:08:03 浏览: 139
Nginx跨域设置Access-Control-Allow-Origin无效的解决办法
可以通过在Nginx配置文件中添加以下代码来禁用Access-Control-Allow-Origin:
```
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;
}
```
这段代码将在OPTIONS请求中添加Access-Control-Allow-Origin头,并将其设置为*,这将禁用跨域请求。
阅读全文