이미지 캐싱을 하려면? 정보
이미지 캐싱을 하려면?
본문
페이지를 띄울 때마다 헤더에서 불러들이는 이미지를 불러와서 페이지 로딩이 느린데, 다른 분들은 어떻게 설정하고 계신지 궁금해요~~
추천
0
0
댓글 2개

mod_expire

<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault A0
ExpiresByType application/x-javascript A604800
ExpiresByType text/css A604800
ExpiresByType text/javascript A604800
ExpiresByType image/jpeg A604800
ExpiresByType image/jpg A604800
ExpiresByType image/gif A604800
ExpiresByType image/png A604800
</IfModule>
이렇게 추가해줬는데 아직 효과는 모르겠네요 ㅎㅎ
ExpiresActive On
ExpiresDefault A0
ExpiresByType application/x-javascript A604800
ExpiresByType text/css A604800
ExpiresByType text/javascript A604800
ExpiresByType image/jpeg A604800
ExpiresByType image/jpg A604800
ExpiresByType image/gif A604800
ExpiresByType image/png A604800
</IfModule>
이렇게 추가해줬는데 아직 효과는 모르겠네요 ㅎㅎ