projectmanager/nginx.htaccess
2025-06-25 10:53:11 +08:00

5 lines
111 B
Plaintext

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