Disable Track and Trace in apache
问题 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. 回答1: 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 回答2: You need to put TraceEnable Off in httpd.conf 回答3: To disable these methods, add the