Why when i was setting Expires and disabled Etags, I still getting 304 response?

This is my .htaccess file:

Header unset Pragma
FileETag None
Header unset ETag

#Expire Header
<FilesMatch "\.(ico|js|css|jpg|jpeg|png|gif)$">
Header set Cache-Control "public"
Header set Expires "Thu, 15 Apr 2020 20:00:00 GMT"
</FilesMatch> 
link|improve this question
304 can work based on ETags or based on Last-Modified. If you remove the ETag header it will still work based on the Last-Modified header. Not sure why you would want to disable 304's. Please clarify your question, as it contains very little info. – Gerben Jan 9 at 18:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.