nginx $1,2,3的含义

Yishto 2021-08-20 21:47:02
Categories: Tags:

今天在公司做伪静态的时候,遇到了一些疑惑,特别是针对$1,2这个含义

1
2
rewrite ^/(news_\d)/(\d).html$ https://$host/?$1 permanent;

上面是我写的重写规则,先说$代表的是参数,所以一定是()包含的

$1就是 news_\d

$2就是 \d

举个例子:

https://www.zhubanxian.com/news_1/2.html

$1 就是news_1

$2 就是2