2016-07-07 4 views
2

나는 젠드 프레임 워크를 사용하고 내가 css.php에 대한 만료 헤더를 설정하는 방법이css.php의 만료 헤더를 설정하는 방법은 무엇입니까?

http://www.example.com/css.php?request=application%2Fthemes%2Flove%2Ftheme.css&c=2146&pageStart=15376&pageEnd=256358

같은 CSS 파일을 많이 있나요? 실제로 .htaccess가 작동하지 않습니다.

내 .htacess :

<IfModule mod_expires.c> 
# Enable expirations 
ExpiresActive On 
# Default directive 
ExpiresDefault "access plus 1 month" 
# My favicon 
ExpiresByType image/x-icon "access plus 1 year” 
# Images 
ExpiresByType image/gif "access plus 1 month" 
ExpiresByType image/png "access plus 1 month" 
ExpiresByType image/jpg "access plus 1 month" 
ExpiresByType image/jpeg "access plus 1 month" 
# CSS 
ExpiresByType text/css "access 1 month” 
# Javascript 
ExpiresByType application/javascript "access plus 1 year" 
</IfModule> 

답변

1

어떻게 당신이 뭔가가 확인된다

<IfModule mod_headers.c> 
    <filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$"> 
    Header set Cache-Control "max-age=2678400, public" 
    </filesmatch> 
    <filesmatch "\.(html|htm)$"> 
    Header set Cache-Control "max-age=7200, private, must-revalidate" 
    </filesmatch> 
    <filesmatch "\.(pdf)$"> 
    Header set Cache-Control "max-age=86400, public" 
    </filesmatch> 
    <filesmatch "\.(js)$"> 
    Header set Cache-Control "max-age=2678400, private" 
    </filesmatch> 
</IfModule> 
+0

난 당신의 .htaccess만을 사용이 – Rocstar

+0

을 변경 htaccess로에서 다음을 시도해보십시오 주셔서 감사합니다 캐싱 후에 변경 되었습니까? :) – Sree

+0

예 PageSpeed ​​Insights with Google 확인 : – Rocstar