Add the below snippet to .htaccess to prevent http 'TRACE', more info about it can be found here: http://www.cgisecurity.com/questions/httptrace.shtml
# Disable trace track requests
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]