19 lines
508 B
ApacheConf
19 lines
508 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^ index.html [L]
|
|
</IfModule>
|
|
|
|
<IfModule mod_headers.c>
|
|
Header set X-Powered-By "Hostinger Horizons"
|
|
|
|
# Cache everything on CDN by default
|
|
Header set Cache-Control "public, s-maxage=604800, max-age=0"
|
|
|
|
# Cache in browser all assets
|
|
<If "%{REQUEST_URI} =~ m#^/assets/.*$#">
|
|
Header set Cache-Control "public, max-age=604800"
|
|
</If>
|
|
</IfModule>
|