为什么在 htaccess 正则表达式中使用双斜杠点(即:\\.)?

Why double slash dot (ie: \\.) in htaccess regex?

来自另一个answer,这个双斜杠点很常见

RedirectMatch 404 /\.svn(/|$)

既然我们要匹配“/.svn”等,为什么这不是一个斜杠来避开句点?

这里允许双重转义,但不是必需的。所以这两个规则都有效:

RedirectMatch 410 /\.svn(/|$)

RedirectMatch 410 /\.svn(/|$)