« Managing WordPress blogs | Main | Virtual CORE stand alone image »
June 25, 2012
Apache - disabling HTTP TRACE / TRACK
In order to resolve trace / track security issued related to Apache, simply append the following Rewrite rule to the Apache configuration file:
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
and restart the server. Done.
Posted by cdgrieb at June 25, 2012 11:52 AM