Returning "200 OK" in Apache on HTTP OPTIONS requests
- by i.
I'm attempting to implement cross-domain HTTP access control without touching any code.
I've got my Apache(2) server returning the correct Access Control headers with this block:
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "POST, GET, OPTIONS"
I now need to prevent Apache from executing my code when the browser sends a HTTP OPTIONS request (it's stored in the REQUEST_METHOD environment variable), returning 200 OK.
How can I configure Apache to respond "200 OK" when the request method is OPTIONS?
I've tried this mod_rewrite block, but the Access Control headers are lost.
RewriteEngine On
RewriteCond %{REQUEST_METHOD} OPTIONS
RewriteRule ^(.*)$ $1 [R=200,L]