Files
yusheng-php/nginx.htaccess

6 lines
99 B
Plaintext
Raw Permalink Normal View History

2025-08-08 11:25:39 +08:00
location /{
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}