Merge pull request #2145 from even-allmighty/master

Corrected Regex for lighttpd rewrite
This commit is contained in:
Jeremy Benoist
2016-06-13 11:51:37 +02:00
committed by GitHub

View 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",
)