19 lines
556 B
ApacheConf
Executable File
19 lines
556 B
ApacheConf
Executable File
<IfModule mod_expires.c>
|
|
ExpiresActive On
|
|
ExpiresByType image/jpg "access 1 hour"
|
|
ExpiresByType image/jpeg "access 1 hour"
|
|
ExpiresByType image/gif "access 1 hour"
|
|
ExpiresByType image/png "access 1 hour"
|
|
ExpiresDefault "access 1 week"
|
|
</IfModule>
|
|
|
|
Options +FollowSymLinks
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{SCRIPT_FILENAME} !-d
|
|
RewriteCond %{SCRIPT_FILENAME} !-f
|
|
RewriteCond %{REQUEST_URI} \.png$
|
|
|
|
# Images that needs to be handled by heatmap.php
|
|
RewriteRule ^/?latest-heatmap\.(\d+)\.(\d+)\.(\d+)\.png$ ./heatmap.php?zoom=$1&x=$2&y=$3
|