From 6c4f69c1079ce9cf219b450b4f3913ac0fc5bac7 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Sun, 24 Apr 2016 20:49:06 +0200 Subject: [PATCH] Update inline user docs to reflect 6465c2b0a99b5262f25083af70b94668c1cac6af --- content-sample/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content-sample/index.md b/content-sample/index.md index 086c56c..b498bc0 100644 --- a/content-sample/index.md +++ b/content-sample/index.md @@ -284,13 +284,13 @@ still shows no rewritten URLs, force URL rewriting by setting `$config['rewrite_url'] = true;` in your `config/config.php`. If you're using Nginx, you can use the following configuration to enable -URL rewriting. Don't forget to adjust the path (`/pico`; line `1` and `4`) +URL rewriting. Don't forget to adjust the path (`/pico/`; line `1` and `3`) to match your installation directory. You can then enable URL rewriting by setting `$config['rewrite_url'] = true;` in your `config/config.php`. - location ~ ^/pico(.*) { + location /pico/ { index index.php; - try_files $uri $uri/ /pico/?$1&$args; + try_files $uri $uri/ /pico/$is_args$args; } ## Documentation