0๐
A preflight request should be confirmed with a 204 No Content HTTP code (along with the headers).
Try adding the following to your .htaccess
, right underneath the Header
directives:
RewriteCond %{REQUEST_METHOD} OPTIONS
RewriteRule ^(.*)$ $1 [R=204,L]
Source:stackexchange.com