2012-06-08 2 views
1

내 사이트에 Joomla를 사용하고 있으며 htaccess 파일에 Expires 헤더를 포함 시켰습니다. 그러나 YSlow를 통해 사이트를 확인할 때 여전히 F, htaccess 파일의 코드 이것은YSlow 학년 F에 추가 만료 헤더 - 도와주세요

<IfModule mod_expires.c> 
    # Enable expiration control 
    ExpiresActive On 

    # Default expiration: Immediate after request 
    ExpiresDefault "now" 

    # CSS and JS expiration: 1 week after request 
    ExpiresByType text/css "now plus 1 week" 
    ExpiresByType application/javascript "now plus 1 week" 
    ExpiresByType application/x-javascript "now plus 1 week" 

    # Image files expiration: 1 month after request 
    ExpiresByType image/bmp "now plus 1 month" 
    ExpiresByType image/gif "now plus 1 month" 
    ExpiresByType image/jpeg "now plus 1 month" 
    ExpiresByType image/jp2 "now plus 1 month" 
    ExpiresByType image/pipeg "now plus 1 month" 
    ExpiresByType image/png "now plus 1 month" 
    ExpiresByType image/svg+xml "now plus 1 month" 
    ExpiresByType image/tiff "now plus 1 month" 
    ExpiresByType image/vnd.microsoft.icon "now plus 1 month" 
    ExpiresByType image/x-icon "now plus 1 month" 
    ExpiresByType image/ico "now plus 1 month" 
    ExpiresByType image/icon "now plus 1 month" 
    ExpiresByType text/ico "now plus 1 month" 
    ExpiresByType application/ico "now plus 1 month" 
    ExpiresByType image/vnd.wap.wbmp "now plus 1 month" 
    ExpiresByType application/vnd.wap.wbxml "now plus 1 month" 
    ExpiresByType application/smil "now plus 1 month" 

    # Audio files expiration: 1 month after request 
    ExpiresByType audio/basic "now plus 1 month" 
    ExpiresByType audio/mid "now plus 1 month" 
    ExpiresByType audio/midi "now plus 1 month" 
    ExpiresByType audio/mpeg "now plus 1 month" 
    ExpiresByType audio/x-aiff "now plus 1 month" 
    ExpiresByType audio/x-mpegurl "now plus 1 month" 
    ExpiresByType audio/x-pn-realaudio "now plus 1 month" 
    ExpiresByType audio/x-wav "now plus 1 month" 

    # Movie files expiration: 1 month after request 
    ExpiresByType application/x-shockwave-flash "now plus 1 month" 
    ExpiresByType x-world/x-vrml "now plus 1 month" 
    ExpiresByType video/x-msvideo "now plus 1 month" 
    ExpiresByType video/mpeg "now plus 1 month" 
    ExpiresByType video/mp4 "now plus 1 month" 
    ExpiresByType video/quicktime "now plus 1 month" 
    ExpiresByType video/x-la-asf "now plus 1 month" 
    ExpiresByType video/x-ms-asf "now plus 1 month" 

    # webfonts 
    ExpiresByType font/truetype "access plus 1 month" 
    ExpiresByType font/opentype "access plus 1 month" 
    ExpiresByType application/x-font-woff "access plus 1 month" 
    ExpiresByType image/svg+xml "access plus 1 month" 
    ExpiresByType application/vnd.ms-fontobject "access plus 1 month" 
</IfModule> 

누군가가 Yslow의 등급이 매겨지지 않는 이유를 말해 줄 수 있습니까?

답변

1

PHP 모듈 mod_expires을 호스팅 솔루션에서 사용할 수 있습니까?

+0

예, 제 호스팅 서버에서 사용할 수 있습니다. 나는 그것을 검사했다. –