Disable Track and Trace in apache

apache, trace, user-tracking

Solution

In Apache2 you can just add `TraceEnable Off` in httpd.conf (end of file)

TraceEnable Off

To check if Trace is On/Off you can use Curl:

curl -v -X TRACE http://www.yourserver.com

Problem

I have Apache 2.2.22 in suse Linux. I want to disable track & trace in Apache and use 1- TraceEnable Off and 2- RewriteEngine on ``` RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK) RewriteRule .* - [F] . ``` but of 2 way don't work.

Original source