|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
学会了PHP,那么学其他的语言,肯定速成,反过来也一样,如果你之前学过其他的语言,那么学PHP肯定快。 Apache模块 mod_file_cache
申明 供应文件描写符缓存撑持,从而进步Apache功能 形态 实行(X) 模块名 file_cache_module 源文件 mod_file_cache.c <?php
header( "Expires:" . gmdate("D, d M Y H:i:s", time() + 3600 * 24) . " GMT");
header("Content-Type:image/jpeg;");
header("Connection:close;");
$im = ImageCreateFromJpeg('img/ove.jpg');
ImageJPEG($im);
?> 办事器设置装备摆设:
FileETag none
<IfModule expires_module>
ExpiresActive On
ExpiresDefault A0
ExpiresByType image/x-icon A2592000
ExpiresByType application/x-javascript A259200
ExpiresByType text/CSS A259200
ExpiresByType image/gif A259200
ExpiresByType image/png A259200
ExpiresByType image/jpeg A259200
ExpiresByType text/plain A604800
ExpiresByType application/x-shockwave-Flash A604800
ExpiresByType video/x-flv A604800
ExpiresByType application/pdf A604800
ExpiresByType text/html A0
</IfModule>
具体请参考以下页面:
http://www.tblog.com.cn/manual/apache2.2/mod/mod_file_cache.html
告诉你了一个方式,但是缺少努力这一环节,那也是白搭。 |
|