0

ySlow is saying I have 30 misconfigured etages on http://www.diablo-source.com/ and I'm not sure what that means or how to fix it. After a quick Google search it appears to be the same thing as a last-modified header. Is it possible for me to setup my server so it sends the last-modified and etag header as the default last modified timestamp of the file?

Ben
  • 3,630
  • 17
  • 62
  • 93

1 Answers1

0

It's not the same thing as the last-modified-header, it's a "better", safer way to identify the version of a file and was introduced with HTTP 1.1. One technical fact is that the ETags are different on different Servers, so you may can get a problem if you 'r using a CDN. I would advise you to disable E-Tags, in Apache you just need to add: FileETag none . http://httpd.apache.org/docs/current/mod/core.html#fileetag

zaub3r3r
  • 900
  • 7
  • 9