正则表达式位置块在 NGINX 中不起作用

正则表达式位置块在 NGINX 中不起作用

我的 nginx 配置中有一个非常简单的位置块,如下所示:

location ~* ^\/[a-z0-9]{24}$ {
    // do some things
}

我正在尝试捕获以 Mongo ObjectId 结尾的 URL。例如:https://example.com/5550cdea6928495a25bb8df8

由于某种原因,nginx 告诉我有一个错误:

2016/01/07 22:36:32 [emerg] 26445#0: unknown directive "24}$" in /etc/nginx/sites-enabled/mysite.com:32

答案1

http://nginx.org/en/docs/http/ngx_http_rewrite_module.html

如果正则表达式包含“}”或“;”字符,则整个表达式应该用单引号或双引号括起来。

相关内容