Home > Article > Backend Development > Solve PHP cross-domain problems by setting response headers through the header function
Set the domain names that are allowed to be accessed:
1. Allow access to all domain names
header("Access-Control-Allow-Origin:*");
2. Allow access to specified domain names
header( 'Access-Control-Allow-Origin:http://a.test.com' );
Online learning video tutorial sharing: php video tutorial
Set the request method to allow access:
1. 1. One or more
header('Access-Control-Allow-Methods:POST,GET,OPTIONS,DELETE');
2, all
header('Access-Control-Allow-Methods:*');
and then set other parameters as needed.
Recommended related articles and tutorials: php tutorial
The above is the detailed content of Solve PHP cross-domain problems by setting response headers through the header function. For more information, please follow other related articles on the PHP Chinese website!