Files
NewTicket/public/nginx.htaccess
2026-05-07 16:37:25 +08:00

9 lines
153 B
Plaintext

location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}