Files
yusheng-php/public/nginx.htaccess
2025-08-08 11:25:39 +08:00

6 lines
99 B
Plaintext

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