diff --git a/conf/nginx.conf b/conf/nginx.conf index 2f0fc5c..161d2f2 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -9,7 +9,9 @@ location __PATH__/ { # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file client_max_body_size 50M; - try_files $uri $uri/ index.php; + rewrite ^/(.*)$ /index.php?q=$1 last; + + try_files $uri $uri/ index.php; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md deleted file mode 100644 index e69de29..0000000