使用htaccess进行不正确的缓存

时间:2012-06-11 05:31:45

标签: php .htaccess

这是我的htaccess

RewriteEngine On


## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year

ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"

</IfModule>
## EXPIRES CACHING ##

正在发生的事情是网站徽标网址不断加载,尽管它应该被缓存,图像是一个gif,网址是用gif附加的?(随机#),我读到更多内容它显然叫做缓存破坏,如何阻止这一点,以便我不必在每次刷新页面时重新加载网站标识?

0 个答案:

没有答案