我使用.htaccesss来控制我的过期内容
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 24 hour"
ExpiresByType image/jpeg "access plus 24 hour"
ExpiresByType image/gif "access plus 24 hour"
ExpiresByType image/png "access plus 24 hour"
ExpiresByType text/css "access plus 24 hour"
ExpiresByType application/javascript "access plus 24 hour"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresByType text/html "now"
</IfModule>
令我烦恼的是我的index.html页面,我希望过去有过期日期,所以我在文件上做的所有更改都会在用户浏览器上更新。
ExpiresByType text/html "now"
无效我需要的内容如下:ExpiresByType text/html "past"
任何想法我怎么能这样做?