apache 浏览器缓存
1,apache
浏览器默认是会缓存静态文件的,如发现没有
找到<IfModule mime_module>
注释下面代码
#AddType text/html .shtml .html .htm
#AddOutputFilter INCLUDES .shtml .html .htm
禁用缓存
打开
LoadModule headers_module modules/mod_headers.so
添加
<IfModule mod_headers.c>
#对index文件禁用缓存
<FilesMatch "index.(html|htm)$">
header unset ETag
header set cache-control "no-store"
</FilesMatch>
</IfModule>
相关推荐
ThinkMake 2020-11-13
学习web前端 2020-11-09
天空一样的蔚蓝 2020-10-23
curiousL 2020-08-03
sochrome 2020-07-29
SoarFly00 2020-06-28
LeoHan 2020-06-02
拭血 2020-06-02
lengyu0 2020-05-20
GimmeS 2020-05-15
逸璞丷昊 2020-03-08
lengyu0 2020-05-10
viewerlin 2020-05-10
DAV数据库 2020-05-07
程序员俱乐部 2020-05-06
Vampor 2020-05-01
ROES 2020-04-22
lcyangcss 2020-04-21