Skip to content

Commit ae54f00

Browse files
author
Blake
committed
Add missing nginx rewrite rule
1 parent 7748831 commit ae54f00

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

setup/httpdconf/nginx.conf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,9 @@ server
1919
include /etc/nginx/fastcgi_params;
2020
fastcgi_param SCRIPT_FILENAME $puush$fastcgi_script_name;
2121
}
22-
}
22+
23+
location /
24+
{
25+
rewrite ^/(([^/.]+)/?)*?$ /index.php last;
26+
}
27+
}

0 commit comments

Comments
 (0)