Rumah  >  Artikel  >  pembangunan bahagian belakang  >  php apache 使用cors实现跨域

php apache 使用cors实现跨域

WBOY
WBOYasal
2016-07-29 08:51:322385semak imbas

apaceh 配置:

<virtualhost>
    ServerAdmin xxx@qq.com
    DocumentRoot "C:/htdocs/demo"
    ServerName dev.dd.cn
    ##ErrorLog "logs/dummy-host.localhost-error.log"
    ##CustomLog "logs/dummy-host.localhost-access.log" combined
    <directory>
        #Require all denied
        Header set Access-Control-Allow-Origin *
    </directory>
</virtualhost>

PHP文件设置:

<?php header("Access-Control-Allow-Origin:*"); 
     //处理请求输出数据

?>

配置的含义是允许任何域发起的请求都可以获取当前服务器的数据。当然,这样有很大的危险性,恶意站点可能通过XSS攻击我们的服务器。所以我们应该尽量有针对性的对限制安全的来源,例如下面的设置使得只有http://feng.com这个域才能跨域访问服务器的API。

httpd.conf:

<virtualhost>
    ServerAdmin xxx@qq.com
    DocumentRoot "C:/htdocs/demo"
    ServerName dev.dd.cn
    ##ErrorLog "logs/dummy-host.localhost-error.log"
    ##CustomLog "logs/dummy-host.localhost-access.log" combined
    <directory>
        #Require all denied
        Header set Access-Control-Allow-Origin http://feng.com
    </directory>
</virtualhost>

 PHP文件中:

header("Access-Control-Allow-Origin:http://feng.com");

以上就介绍了php apache 使用cors实现跨域,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn