正如我的标题所说,我正在尝试缓存控制我网站上的内容,但似乎我的内容没有被缓存。
这是我的 .htaccess 文件中的代码:
Header unset Pragma
FileETag None
Header unset ETag
# cache images/pdf docs for 10 days
<FilesMatch "\.(ico|pdf|jpg|jpeg|png|gif|js)$">
Header set Cache-Control "max-age=864000, public, must-revalidate"
Header unset Last-Modified
</FilesMatch>
# cache html/htm/xml/txt diles for 2 hours
<FilesMatch "\.(html|htm|xml|txt|xsl)$">
Header set Cache-Control "max-age=7200, must-revalidate"
</FilesMatch>
我尝试了很多教程,但似乎没有一个能奏效。顺便说一句,其他 .htaccess 代码,如重定向和其他东西,确实有效。