Update nginx.htaccess

This commit is contained in:
全栈小学生 2023-11-20 18:01:47 +08:00
parent f6f67e6b0e
commit af8f6e4f21

View File

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