1000 FAQs, 500 tutorials and explanatory videos. Here, there are only solutions!
Use the Access-Control-Allow-Origin header
This guide helps you set up the header "Access-Control-Allow-Origin
", a HTTP header which specifies which origin (domain, protocol and port) can access resources on a server. This header is used to control cross-origin access (CORS) from a web application.
⚠For additional assistance contact a partner or launch a call for tenders free of charge — discover also the role of the host.
List of authorised domains
You can add the origin of a query to the list of domains allowed to access server resources by adding it to the header values Access-Control-Allow-Origin
.
To authorize e.g. the site https://domain.xyz
access resources with CORS, the header must be as follows:
Access-Control-Allow-Origin: https://domain.xyz
You can adjust it via the function header()
PHP by inspiring you to this guide In particular.
If you need this header to be applied everywhere, you can go through a self-prepends.