yunzer_under/public/nginx.htaccess
2025-07-14 14:48:36 +08:00

11 lines
211 B
Plaintext

location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
# ???? storage ????????
location /storage/ {
try_files $uri $uri/ /index.php?s=$uri&$args;
}