jmccole83
3/23/2018 - 12:21 PM

Disable Trace Track Requests

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]