@darion
To disable the HEAD method in .htaccess, you can add the following code to your .htaccess file:
1 2 3 |
<Limit HEAD> Deny from all </Limit> |
This code uses the Limit directive to restrict access to the HEAD method for all requests. By denying access to the HEAD method, you effectively disable it for your website. Save the changes to your .htaccess file and upload it to your server to apply the changes.