posted 14 years ago
The HTTP OPTIONS query does not seem to work on some hosts and I do not know why.
On some hosts, I can do the following:
OPTIONS /abc/abc.htm HTTP/1.1
Host: www.host.com
and as output from the server I get:
200 OK
Allow: OPTIONS, PUT, HEAD, TRACE
However, on other servers when I try this very same OPTIONS query,
either with * or /path/name.ext, the server sends me 'Connection: closed' back as attribute in the header (amongst others).
Why does one host perfectly give me its OPTIONS and another host does not?
Does this have to do with possible set up proxies on the host? I even tried HTTP/1.0.
Thanks