Fixed all $_GET parameters missing in Nginx (please update your nginx.conf) [#1245](https://github.com/getgrav/grav/issues/1245)

This commit is contained in:
Matias Griese 2017-01-13 12:27:21 +02:00
parent c718b8f32a
commit 9b5ef4c263
No known key found for this signature in database
GPG Key ID: 7C994406D898968A
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
* Fix renaming the folder name if the page, in the default language, had a custom slug set in its header
* Fixed issue with `Content-Encoding: none`. It should really be `Content-Encoding: identity` instead
* Fixed broken `hash` method on page modifications detection
* Fixed all `$_GET` parameters missing in Nginx (please update your nginx.conf) [#1245](https://github.com/getgrav/grav/issues/1245)
# v1.1.12
## 12/26/2016

View File

@ -12,7 +12,7 @@ server {
# `location /subfolder {`
# and the rewrite to use `/subfolder/index.php`
location / {
try_files $uri $uri/ /index.php?_url=$uri;
try_files $uri $uri/ /index.php?_url=$uri&$query_string;
}
## End - Index