Skip to content

Commit cd9de11

Browse files
committed
Added missing ? to the query string in the nginx configuration. - Fixes #12
1 parent 3290fca commit cd9de11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ http {
7979
location / {
8080
# First attempt to serve request as file, then
8181
# as directory, then fall back to index.php
82-
try_files $uri $uri/ /index.php$args;
82+
try_files $uri $uri/ /index.php?$args;
8383
}
8484

8585
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

0 commit comments

Comments
 (0)