Home  >  Article  >  Backend Development  >  nginx 配置ajax跨域访问php

nginx 配置ajax跨域访问php

WBOY
WBOYOriginal
2016-06-23 13:39:321011browse

server {     add_header 'Access-Control-Allow-Origin' '*';    add_header 'Access-Control-Allow-Credentials' 'true';    add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken';    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';    add_header PS 1;    location / {          }}

参考:

    http://stackoverflow.com/questions/18450310/nginx-add-header-not-working

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn