Shortlink/nginx-rewrite.conf
Ren Baoshuo ae63d246cc Fix
2021-08-19 17:15:23 +08:00

9 lines
138 B
Plaintext

# REWRITE START
location ~ /inc/ {
return 404;
}
location ~* ^/(?![asset|api]) {
rewrite (\d+|\w+)$ /index.php?id=$1;
}
# REWRITE END