如何为我的网站启用浏览器缓存?我只是将cache-control:public放在我的标题中的某个地方吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
Cache-Control:public;
>
我正在使用最新版本的XAMPP开发的最新版本的PHP。
答案 0 :(得分:185)
要在HTML中使用缓存控制,请使用meta tag,例如
<meta http-equiv="Cache-control" content="public">
内容字段中的值定义为以下四个值之一。
有关Cache-Control
标题的一些信息如下
HTTP 1.1。允许值= PUBLIC |私人| NO-CACHE | NO-STORE。
公开 - 可以缓存在公共共享缓存中 私有 - 只能缓存在私有缓存中 无缓存 - 可能无法缓存 No-Store - 可以缓存但不归档。
指令CACHE-CONTROL:NO-CACHE表示不应使用缓存信息 而应将请求转发到源服务器。该指令与PRAGMA具有相同的语义:NO-CACHE。
客户端应该包括PRAGMA:NO-CACHE和CACHE-CONTROL:当无缓存请求被发送到不知道是HTTP / 1.1兼容的服务器时,NO-CACHE。另见EXPIRES。
注意:在HTTP中指定缓存命令可能比在META语句中指定缓存命令更好,在META语句中,它们可以影响比浏览器更多,但代理和其他可能缓存信息的中介。
答案 1 :(得分:126)
您可以{/ 3}}使用:
<?php
//set headers to NOT cache a page
header("Cache-Control: no-cache, must-revalidate"); //HTTP 1.1
header("Pragma: no-cache"); //HTTP 1.0
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
//or, if you DO want a file to cache, use:
header("Cache-Control: max-age=2592000"); //30days (60sec * 60min * 24hours * 30days)
?>
请注意,所使用的确切标头取决于您的需求(如果您需要支持set the headers in PHP和/或HTTP 1.0)
答案 2 :(得分:40)
正如我写的那样(在http://www.williamferreira.net/blog/2011/10/04/controle-de-cache-apache/中)最好使用文件.htacces。但请注意将内容留在缓存中的时间。
使用:
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
其中:604800 = 7天
PS:这可用于重置任何标题
答案 3 :(得分:29)
http://www.askapache.com/htaccess/apache-speed-cache-control.html处的页面建议使用以下内容:
添加缓存控制标头
这将在您的根.htaccess文件中,但如果您有权访问 httpd.conf更好。
此代码使用FilesMatch指令和Header指令将Cache-Control Headers添加到某些文件。# 480 weeks <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> Header set Cache-Control "max-age=290304000, public" </FilesMatch>
答案 4 :(得分:16)
这是我在实际网站中使用过的最好的.htaccess
:
<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>
##Tweaks##
Header set X-Frame-Options SAMEORIGIN
## 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 text/html "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 1 month"
</IfModule>
## EXPIRES CACHING ##
<IfModule mod_headers.c>
Header set Connection keep-alive
<filesmatch "\.(ico|flv|gif|swf|eot|woff|otf|ttf|svg)$">
Header set Cache-Control "max-age=2592000, public"
</filesmatch>
<filesmatch "\.(jpg|jpeg|png)$">
Header set Cache-Control "max-age=1209600, public"
</filesmatch>
# css and js should use private for proxy caching https://developers.google.com/speed/docs/best-practices/caching#LeverageProxyCaching
<filesmatch "\.(css)$">
Header set Cache-Control "max-age=31536000, private"
</filesmatch>
<filesmatch "\.(js)$">
Header set Cache-Control "max-age=1209600, private"
</filesmatch>
<filesMatch "\.(x?html?|php)$">
Header set Cache-Control "max-age=600, private, must-revalidate"
</filesMatch>
</IfModule>
答案 5 :(得分:13)
对于Apache服务器,您应该检查mod_expires以设置Expires和Cache-Control标头。
或者,您可以使用Header指令自行添加Cache-Control:
Header set Cache-Control "max-age=290304000, public"
答案 6 :(得分:5)
元缓存控制标记允许Web发布者定义缓存应如何处理页面。它们包括声明应该可缓存的指令,缓存可以存储的内容,到期机制的修改以及重新验证和 重新加载控件。
允许的值为:
公开 - 可以缓存在公共共享缓存中
私有 - 只能缓存在私有缓存中
no-Cache - 可能没有缓存
no-Store - 可以缓存但不归档
请注意区分大小写。在您的网页来源中添加以下元标记。标签末尾的拼写差异是使用“/&gt; = xml”或“&gt; = html。
<meta http-equiv="Cache-control" content="public">
<meta http-equiv="Cache-control" content="private">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache-control" content="no-store">
源 - &GT; MetaTags
答案 7 :(得分:5)
OWASP推荐以下内容,
尽可能确保缓存控制HTTP标头设置为no-cache,no-store,must-revalidate,private;并且pragma HTTP标头设置为no-cache。
<IfModule mod_headers.c>
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
Header set Pragma "no-cache"
</IfModule>