/etc/httpd/conf/httpd.conf) and add the line:
TraceEnable offAn other way to disable the TRACE Request Method is to make use of
mod_rewrite and put the following lines in your .htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
*Note: The
Limit or LimitExcept directive in the httpd.conf file does not appear to be able to restrict TRACE.Tags:
