Files
2023-04-14 08:01:06 +00:00

7 lines
100 B
Plaintext

location /{
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}