Created
October 6, 2013 04:17
-
-
Save RhythmShahriar/6849457 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @package Caching Tutorail | |
# @link http://rhythmshahriar.com | |
# @author Rhythm <[email protected]> | |
# @copyright Copyright (c) 2013, Rhythm Shahriar | |
ExpiresActive On | |
ExpiresDefault A0 | |
# 1 YEAR | |
<FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$"> | |
ExpiresDefault A29030400 | |
</FilesMatch> | |
# 1 WEEK | |
<FilesMatch "\.(jpg|jpeg|png|gif|swf)$"> | |
ExpiresDefault A604800 | |
</FilesMatch> | |
# 3 HOUR | |
<FilesMatch "\.(txt|xml|js|css)$"> | |
ExpiresDefault A10800" | |
</FilesMatch> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment