DirectoryIndex index.html index.php
Options -Indexes
php_flag session.use_cookies on
php_flag register_globals off
php_flag session.use_trans_sid off

<IfModule mod_headers.c>
	# 1 YEAR
	<FilesMatch "\.(ico|pdf|flv)$">
	Header set Cache-Control "max-age=29030400, public"
	</FilesMatch>
	# 1 WEEK
	<FilesMatch "\.(jpg|jpeg|png|gif|swf)$">
	Header set Cache-Control "max-age=604800, public"
	</FilesMatch>
	# 2 DAYS
	<FilesMatch "\.(xml|txt|css|js)$">
	Header set Cache-Control "max-age=172800, proxy-revalidate"
	</FilesMatch>
	# 1 MIN
	#<FilesMatch "\.(html|htm|php)$">
	#Header set Cache-Control "max-age=60, private, proxy-revalidate"
	#</FilesMatch>
</IfModule>
<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/jpg "access plus 3 days"
    ExpiresByType image/jpeg "access plus 3 days"
    ExpiresByType image/gif "access plus 3 days"
    ExpiresByType image/png "access plus 3 days"
</IfModule>
