From 47a3b51ef8ab7d47bc5492c830bc8905e3fb872e Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 4 Jul 2014 10:12:24 +0200 Subject: [PATCH] fix rewrite map loading --- src/stub-phar.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stub-phar.php b/src/stub-phar.php index ac82a38..9b65f2f 100644 --- a/src/stub-phar.php +++ b/src/stub-phar.php @@ -55,10 +55,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; -- 2.30.2