aboutsummaryrefslogtreecommitdiff
path: root/src/stub-phar.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/stub-phar.php')
-rw-r--r--src/stub-phar.php4
1 files 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;