Table des matières

CORS

Cross-Origin Resource Sharing

Cross-site HTTP requests are HTTP requests for resources from a different domain than the domain of the resource making the request.

Avec Apache:

<IfModule mod_headers.c>
 Header set Access-Control-Allow-Origin *
 ...
</IfModule>