首页  >  文章  >  后端开发  >  nginx 配置ajax跨域访问php api

nginx 配置ajax跨域访问php api

WBOY
WBOY原创
2016-08-08 09:32:551545浏览

打开nginx的配置文件nginx.conf,在server中配置一下:

location ~ \.php?($|/)

{
#try_files $uri =404;
#handel cosr    by mao
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'OPTION, POST, GET';
                                add_header 'Access-Control-Allow-Headers' 'X-Requested-With, Content-Type';
fastcgi_pass  unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;

}



以上就介绍了nginx 配置ajax跨域访问php api,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
上一篇:PHP 使用redis下一篇:Ngnix的超时问题