I'm talking about a CORS preflight HTTP request by the OPTIONS method which is sent by default by the browser before the actual request. In that request is it possible to make Orgin header to include the full url path?
OPTIONS / HTTP/1.1
Host: example.com
Origin: http://www.example.com/blah
I want my page to send full url in Origin header. Is there any way to trick the browser to do so?