I needed to set my Apache Web Server to ignore/block all the HEAD requests but respond to GET requests normally. It is very simple with the mod_rewrite, for instance this can be added to .htaccess:
Second line:
matches all requests that use method HEAD.
Third line:
tells Apache HTTP not to make any redirection (-) and sends back HTTP 403 (FORBIDDEN).