I'am doing a web based application and what I did is to disable some of the HTTP methods are not necessary for the website specifically: OPTIONS
, HEAD
and TRACE
.
I put this on the httpd.conf
of my xampp to test if this works:
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !^(GET|POST|PUT)
RewriteRule .* - [R=405,L]
Now my problem is how would i know if it is really deactivated or this particular setting is working properly? Are there tools that could facilitate this. I'm just new to server side administration.
Please someone help me.