宝塔面板Nginx设置所有文件或某文件允许跨域请求
第一种,允许该站点所有请求可跨域请求
#允许跨域请求 #放在诸如 include enable-php-.conf;这种的前面 add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Headers' '*'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
第二种,允许该站点某个目录或某种文件可跨域请求
#放在诸如 include enable-php-.conf;这种的前面 #使用正则规定哪些目录或文件在请求时会添加可跨域header location ~ /(.*)\.svg { #允许跨域请求 add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Headers' '*'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; }
-- 展开阅读全文 --