nginx 설정 addheader 'Access - Control - Allow - Origin' '*' 에 도 영역 간 문제 가 존재 합 니 다.
해결: 요청 이 성공 하면 HTTP CODE 는 200 입 니 다.요청 실패 시 HTTP CODE 400, 이때 add헤더 'Access - Control - Allow - Origin' '*' 설정 이 잘못 되 었 습 니 다!HTTP CODE 가 어떤 값 을 사용 하 든 설정 은 always 를 추가 해 야 합 니 다.nginx 버 전 > 1.7.5 시 always 를 추가 할 필요 가 없습니다.
add_header ‘Access-Control-Allow-Origin’ ‘*’ always;
nginx 문서 주소:http://nginx.org/en/docs/http/ngx_http_headers_module.html
문서 원본:
Syntax: add_header name value [always]; Default: — Context: http, server, location, if in location
If the always parameter is specified (1.7.5), the header field will be added regardless of the response code.
2. 추가 설정: 백 엔 드 가 PHP 일 때 addheader ‘Access-Control-Allow-Origin’ ‘’ always; location ~. php {} 모듈 에 추가 합 니 다.아래 설정 중 addheader ‘Access-Control-Allow-Origin’ '’ always; location ~. php {} 위 줄 에 올 바 르 지 않 은 이유 (테스트 되 었 습 니 다. 정확 합 니 다), 문서 에 적 혀 있 습 니 다:
There could be several add_header directives. These directives are inherited from the previous level if and only if there are no add_header directives defined on the current level.
현재 등급 은 add 가 없습니다header 명령 시 이전 단계 의 add 계승header。반대로 현재 등급 에 add 가 있 으 면header, 이전 층 의 add 를 계승 할 수 없 을 것 입 니 다.header。
server {
listen 80;
server_name localhost 127.0.0.1 demo.com;
root /www;
location ~ \.php {
client_body_timeout 6s;
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PATCH, DELETE, PUT, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Access-Control-Expose-Headers, Token, Authorization';
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' '*' always;
fastcgi_pass unix:/run/php7.0-fpm.sock;
include snippets/fastcgi-php.conf;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.