Shortlink/nginx-rewrite.conf

9 lines
138 B
Plaintext
Raw Permalink Normal View History

2020-03-09 23:53:52 +08:00
# REWRITE START
location ~ /inc/ {
return 404;
}
location ~* ^/(?![asset|api]) {
rewrite (\d+|\w+)$ /index.php?id=$1;
}
# REWRITE END