Skip to content

Instantly share code, notes, and snippets.

@tommywang
Last active June 24, 2016 08:37
Show Gist options
  • Save tommywang/428ca057e0bc898cc2154418cb3018b0 to your computer and use it in GitHub Desktop.
Save tommywang/428ca057e0bc898cc2154418cb3018b0 to your computer and use it in GitHub Desktop.
An example CORS-compliant method. It will allow any GET, POST, or OPTIONS requests from any origin.
// Allow from any origin
if (isset($_SERVER['HTTP_ORIGIN'])) {
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400'); // cache for 1 day
}
// Access-Control headers are received during OPTIONS requests
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
exit(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment