mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
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:
parent
c718b8f32a
commit
9b5ef4c263
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user