Frio - bugfix - don't show new event button if the button isn't available
[friendica.git/.git] / view / .htaccess
1 <FilesMatch "\.tpl">
2   <IfModule authz_host_module>
3     #Apache 2.4
4     Require all denied
5   </IfModule>
6   <IfModule !authz_host_module>
7     #Apache 2.2
8     Deny from all
9   </IfModule>
10 </FilesMatch>
11
12 <IfModule mod_expires.c>
13   ExpiresActive On
14   ExpiresByType image/gif       "access plus 1 year"
15   ExpiresByType image/jpeg      "access plus 1 year"
16   ExpiresByType image/png       "access plus 1 year"
17   ExpiresByType application/javascript "access plus 1 month"
18   ExpiresByType text/javascript "access plus 1 month"
19   ExpiresByType text/css        "access plus 1 month"
20 </IfModule>
21 <IfModule mod_headers.c>
22   <FilesMatch "\.(gif|jpe?g|png|js|css)$">
23     Header set Cache-Control "public"
24   </FilesMatch>
25 </IfModule>