diff options
author | Even Allmighty <smash4321+github@gmail.com> | 2016-06-13 10:35:05 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2016-06-23 09:15:50 +0200 |
commit | afbe800be237e5124ba7b4fe3a15680ebd986fc9 (patch) | |
tree | ff5d40a21b1d5f9c61dad083ea7fca13c24fcc11 | |
parent | eae86d340321a4c24a8808ebdc5242eb619b8998 (diff) | |
download | wallabag-afbe800be237e5124ba7b4fe3a15680ebd986fc9.tar.gz wallabag-afbe800be237e5124ba7b4fe3a15680ebd986fc9.tar.zst wallabag-afbe800be237e5124ba7b4fe3a15680ebd986fc9.zip |
Corrected Regex for lighttpd rewrite
-rw-r--r-- | docs/en/user/installation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 2c6a2f5f..58d9fb7e 100644 --- a/docs/en/user/installation.rst +++ b/docs/en/user/installation.rst | |||
@@ -226,7 +226,7 @@ Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe | |||
226 | dir-listing.activate = "disable" | 226 | dir-listing.activate = "disable" |
227 | 227 | ||
228 | url.rewrite-if-not-file = ( | 228 | url.rewrite-if-not-file = ( |
229 | "^/([^?])(?:\?(.))?" => "/app.php?$1&$2", | 229 | "^/([^?]*)(?:\?(.*))?" => "/app.php?$1&$2", |
230 | "^/([^?]*)" => "/app.php?=$1", | 230 | "^/([^?]*)" => "/app.php?=$1", |
231 | ) | 231 | ) |
232 | 232 | ||