DONE: fix trailing issue on nginx

This commit is contained in:
ISMAIL MASSERAN
2026-09-01 13:49:24 +08:00
parent adab98701f
commit 5793cbc664
+2 -1
View File
@@ -9,7 +9,8 @@ server {
client_max_body_size 50M; client_max_body_size 50M;
location / { location / {
try_files $uri $uri/ @php; rewrite ^/(.*)/$ /$1 last;
try_files $uri @php;
} }
location @php { location @php {