This is one way to do it according to that article
Turn ETags Off ^
This goes in your root .htaccess file but if you have access to httpd.conf that is better.
This code uses the FileETag and the Header directive to remove all ETags from being sent.
---------------
Header unset ETag
FileETag None
--------------
|