Apache 服务器跨域问题解决方法
Posted 酷极和
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 服务器跨域问题解决方法相关的知识,希望对你有一定的参考价值。
修改配置文件 httpd.conf
Header set Access-Control-Allow-Origin * //允许所有ip访问,请根据实际需要指定ip Header set Access-Control-Allow-Credentials true Header set Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, authorization" //authorization是自定义的授权字段 Header set Access-Control-Allow-Methods "GET, POST, OPTIONS, HEAD, PUT, DELETE, PATCH" //允许所有方法,请根据实际需要做适当删减
Enjoy it !
以上是关于Apache 服务器跨域问题解决方法的主要内容,如果未能解决你的问题,请参考以下文章