I have a simple PHP script that I am attempting a cross-domain CORS request:
<?php
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Headers: *");
...
Yet I still get the error:
Request header field
X-Requested-With
is not allowed byAccess-Control-Allow-Headers
Anything I’m missing?