]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Corrected Regex for lighttpd rewrite 2145/head
authorEven Allmighty <smash4321+github@gmail.com>
Mon, 13 Jun 2016 08:35:05 +0000 (10:35 +0200)
committerEven Allmighty <smash4321+github@gmail.com>
Mon, 13 Jun 2016 08:35:05 +0000 (10:35 +0200)
docs/en/user/installation.rst

index 2c6a2f5f6e83c8cd0171bd80ed4629543d93828c..58d9fb7e0a80078ff9f13b28064e9b208e3a999a 100644 (file)
@@ -226,7 +226,7 @@ Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe
     dir-listing.activate = "disable"
 
     url.rewrite-if-not-file = (
-        "^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
+        "^/([^?]*)(?:\?(.*))?" => "/app.php?$1&$2",
         "^/([^?]*)" => "/app.php?=$1",
     )