>  기사  >  php教程  >  php缓存mod_file_cache 模块的设置

php缓存mod_file_cache 模块的设置

WBOY
WBOY원래의
2016-06-21 08:57:201405검색

Apache模块 mod_file_cache

说明 提供文件描述符缓存支持,从而提高Apache性能
状态 实验(X)
模块名 file_cache_module
源文件 mod_file_cache.c

    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<br><ifmodule expires_module><br>ExpiresActive On<br>ExpiresDefault A0<br>ExpiresByType image/x-icon A2592000<br>ExpiresByType application/x-javascript A259200<br>ExpiresByType text/css A259200<br>ExpiresByType image/gif A259200<br>ExpiresByType image/png A259200<br>ExpiresByType image/jpeg A259200<br>ExpiresByType text/plain A604800<br>ExpiresByType application/x-shockwave-flash A604800<br>ExpiresByType video/x-flv A604800<br>ExpiresByType application/pdf A604800<br>ExpiresByType text/html A0<br></ifmodule>

详细请参考以下页面:

http://www.tblog.com.cn/manual/apache2.2/mod/mod_file_cache.html



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.