Shortlink/nginx-rewrite.conf

12 lines
182 B
Plaintext
Raw Normal View History

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