diff --git a/nginx.conf b/nginx.conf index 47f5ea6a..0cf97c11 100644 --- a/nginx.conf +++ b/nginx.conf @@ -21,13 +21,10 @@ http { root /var/www/html; location / { - try_files $uri $uri/index.php; + try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { - if (!-e $request_filename){ - rewrite ^(.*)$ /index.php break; - } fastcgi_pass engelsystem:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;