pico-3.0-alpha
Daniel Rudolf 9 years ago
parent 86b2839660
commit e32a46d6cf
No known key found for this signature in database
GPG Key ID: A061F02CD8DE4538
  1. 29
      content-sample/index.md

@ -283,15 +283,25 @@ you get an error message from your web server, please make sure to enable the
still shows no rewritten URLs, force URL rewriting by setting still shows no rewritten URLs, force URL rewriting by setting
`$config['rewrite_url'] = true;` in your `config/config.php`. `$config['rewrite_url'] = true;` in your `config/config.php`.
If you're using Nginx, you can use the following configuration to enable If you're using Nginx, you can use the following configuration to enable URL
URL rewriting. Don't forget to adjust the path (`/pico`; line `1` and `4`) rewriting (lines `5` to `8`) and denying access to Pico's internal files
to match your installation directory. You can then enable URL rewriting by (lines `1` to `3`). You'll need to adjust the path (`/pico` on lines `1`, `5`
setting `$config['rewrite_url'] = true;` in your `config/config.php`. and `7`) to match your installation directory. Additionally, you'll need to
enable URL rewriting by setting `$config['rewrite_url'] = true;` in your
location ~ ^/pico(.*) { `config/config.php`. The Nginx configuration should provide the *bare minimum*
index index.php; you need for Pico. Nginx is a very extensive subject. If you have any trouble,
try_files $uri $uri/ /pico/?$1&$args; please read through our [Nginx configuration docs][NginxConfig].
}
```
location ~ /pico/(\.htaccess|\.git|config|content|content-sample|lib|vendor|CHANGELOG\.md|composer\.(json|lock)) {
return 404;
}
location ~ ^/pico(.*) {
index index.php;
try_files $uri $uri/ /pico/?$1&$args;
}
```
## Documentation ## Documentation
@ -305,3 +315,4 @@ For more help have a look at the Pico documentation at http://picocms.org/docs.
[WikiPlugins]: https://github.com/picocms/Pico/wiki/Pico-Plugins [WikiPlugins]: https://github.com/picocms/Pico/wiki/Pico-Plugins
[PluginUpgrade]: http://picocms.org/development/#upgrade [PluginUpgrade]: http://picocms.org/development/#upgrade
[ModRewrite]: https://httpd.apache.org/docs/current/mod/mod_rewrite.html [ModRewrite]: https://httpd.apache.org/docs/current/mod/mod_rewrite.html
[NginxConfig]: http://picocms.org/in-depth/nginx/

Loading…
Cancel
Save