TELA Asked: 2021-06-13 16:11:26 +0800 CST Nginx 位置匹配正则表达式年/月/日/* 1 我有一些旧的 url 模式可以重定向到 nginx 中的新位置。 一个典型的干净 url 看起来像example.com/2021/06/13/78676.html?.. 我大致尝试匹配每个块中的位数,例如: location ~ "^[0-9]{4}/[0-9]{2}/[0-9]{2}/([0-9]+).html" { rewrite ^ /archive.php?q=$1; } 请问我到底哪里错了.. nginx regex