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