Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> 關於服務器 >> apache設置靜態文件緩存方法介紹

apache設置靜態文件緩存方法介紹

日期:2017/2/8 10:13:00      編輯:關於服務器

為了減少客戶端對服務端資源的請求,可以開啟mod_expires.so模塊

在apache%C5%E4%D6%C3/" target="_blank">apache配置文件中去掉這段

“#LoadModule expires_module modules/mod_expires.so

”前面的#號


Httpd.conf配置

 

 代碼如下  

ExpiresActive on

#緩存3天。

ExpiresBytype text/css "access plus 3 days

ExpiresByType application/x-javascript "access plus 3 days "

ExpiresByType image/jpeg "access plus 3 days "

Expiresbytype image/gif "access plus 3 days "


加入下面內容

 代碼如下   <IfModule mod_expires.c>
# mod_expires
ExpiresActive on
ExpiresDefault A864000
ExpiresBytype text/css “access plus 14 days
ExpiresByType text/javascript “access plus 14 days ”
ExpiresByType application/x-javascript “access plus 14 days ”
ExpiresByType application/x-shockwave-flash “access plus 14 days ”
ExpiresByType image/* “access plus 14 days ”
ExpiresByType text/html “access plus 14 days ”
<FilesMatch “.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|jpg|gif)$”>
ExpiresDefault A864000
</FilesMatch>
</IfModule>

 

默認緩存時間是10天,css緩存時間是14天

Copyright © Windows教程網 All Rights Reserved