simple cache for rendered files
[phorkie.git] / src / stub-phar.php
index ac82a382c1d8baa33220913ae357c86b6f240b22..95e894cb123d6f3420f3eff1b6acb2c76d3bc85b 100644 (file)
@@ -47,7 +47,10 @@ function rewritePath($path)
 
     $path = rewriteWithHtaccess($path);
 
-    if (substr($path, -4) == '.css' || substr($path, -3) == '.js') {
+    if (substr($path, -4) == '.css'
+        || substr($path, -3) == '.js'
+        || substr($path, 0, 9) == '/phorkie/'
+    ) {
         header('Expires: ' . date('r', time() + 86400 * 7));
     }
     return 'www' . $path;
@@ -55,10 +58,10 @@ function rewritePath($path)
 
 function rewriteWithHtaccess($path)
 {
-    //remove the trailing slash /
+    //remove the leading slash /
     $cpath = substr($path, 1);
     $bFoundMatch = false;
-    $map = include(__DIR__ . '/../src/gen-rewritemap.php');
+    $map = include('phar://' . __FILE__ . '/src/gen-rewritemap.php');
     foreach ($map as $pattern => $replace) {
         if (preg_match($pattern, $cpath, $matches)) {
             $bFoundMatch = true;