Hi friends,
I tried to make my Apache not to serve any requests except GET and POST.
I Added:
<Limit GET POST>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST>
Order deny,allow
Deny from all
</LimitExcept>
Anyway if you:
telnet 1234.com 80
OPTIONS / HTTP/1.0
The result is as follows:
HTTP/1.1 200 OK
Date: Mon, 10 Aug 2009 15:41:21 GMT
Server: Apache
Allow: GET,HEAD,POST,OPTIONS,TRACE
Content-Length: 0
Connection: close
Content-Type: text/html; charset=UTF-8
Where could be a problem?
Thanks a lot for you replies!!!