You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nginx-rewrite/rewrite_test4.conf.bak

8 lines
189 B

# http://www.testpm.com/2019/a/1.html ==> http://www.testpm.com/2018/a/1.html
location /2019 {
rewrite ^/[0-9]+(/.*)$ /2018$1 permanent;
}
location /2018 {
root /usr/share/nginx/html;
}