2014-11-02 107 views
0

我有.htaccess文件htaccess的槓桿瀏覽器緩存圖像

## EXPIRES CACHING ## 
<IfModule mod_expires.c> 
    ExpiresActive On 
# Media 
    ExpiresByType image/jpg "access plus 1 year" 
    ExpiresByType image/jpeg "access plus 1 year" 
    ExpiresByType image/gif "access plus 1 year" 
    ExpiresByType image/png "access plus 1 year" 
    ExpiresByType image/x-icon "access plus 1 year" 
    ExpiresByType application/x-shockwave-flash "access plus 1 year" 

# Codes 
    ExpiresByType text/css "access plus 1 month" 
    ExpiresByType text/x-javascript "access plus 1 month" 
    ExpiresByType application/javascript "access plus 1 year" 

# Webfonts 
    ExpiresByType application/x-font-ttf "access plus 1 year" 
    ExpiresByType font/opentype "access plus 1 year" 
    ExpiresByType application/x-font-woff "access plus 1 year" 
    ExpiresByType image/svg+xml "access plus 1 year" 
    ExpiresByType application/vnd.ms-fontobject "access plus 1 year" 

    ExpiresDefault "access plus 2 days" 
</IfModule> 
## EXPIRES CACHING ## 

這個代碼,但我仍然有「槓桿瀏覽器緩存」的錯誤時,我想測試我的網站速度!

當我試圖查看錯誤的詳細信息: -

使用上面的代碼之前,我有很多的聯繫! 現在我只有PNG,JPG,js文件。

希望你能幫助我。

回答

0

您需要啓用指定mod_expires。 與Apache:

a2enmod expires 
service apache2 restart