我安装了 Yslow 附加组件
当我在Yslow中检查我的应用程序时,我得到 Add Expires header ,我不知道
我在SO和Google中搜索了相关问题,我发现这种方法很合适
<?
header("Expires:".gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
header("Cache-Control: no-cache");
header("Pragma: no-cache");
ob_start();
session_cache_limiter('public');
session_start();
?>
<html>
但仍然表明我是一样的
由于我是新手,所以我对.htaccess的了解不多
请帮助我提高应用程序性能
提前致谢
Wazzy
最佳答案
那只会为您的页面内容设置它,而不是图像和css文件之类的内容,我在您的屏幕截图中注意到它说42个文件,大概是您的图像,css,js等。
在您的.htaccess文件中尝试此操作,请注意,只有在Apache中启用了mod_expires
和mod_headers
的情况下,此方法才有效:
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 1 seconds"
ExpiresByType image/gif "access plus 2592000 seconds"
ExpiresByType image/jpeg "access plus 2592000 seconds"
ExpiresByType image/png "access plus 2592000 seconds"
ExpiresByType text/css "access plus 604800 seconds"
ExpiresByType text/javascript "access plus 216000 seconds"
ExpiresByType application/x-javascript "access plus 216000 seconds"
ExpiresByType application/javascript "access plus 216000 seconds"
</ifModule>
<ifModule mod_headers.c>
<filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
<filesMatch "\\.(css)$">
Header set Cache-Control "max-age=604800, public"
</filesMatch>
<filesMatch "\\.(js)$">
Header set Cache-Control "max-age=216000, private"
</filesMatch>
<filesMatch "\\.(xml|txt)$">
Header set Cache-Control "max-age=216000, public, must-revalidate"
</filesMatch>
<filesMatch "\\.(html|htm|php)$">
Header set Cache-Control "max-age=1, private, must-revalidate"
</filesMatch>
</ifModule>
关于php - 在php中添加Expire header 无法使其正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4603076/