重定向 URL 带和不带关闭 SLASH(符号)

redirect URL with and without closing SLASH (symbol)

我需要将 example.org/folder1 & example.org/folder1/ 重定向到 example.org/file.html

请看我的代码

Redirect 301 /folder1/   /file.html

此代码仅匹配 example.org/folder1/ 并忽略 url 而不关闭 / 我怎样才能使它在有和没有 / 的情况下都有效。无需重复代码两次!?

我还需要它不区分大小写。

谢谢先生

您可以使用 RedirectMatch 并使用 ?字符

RedirectMatch 301 ^/folder1/?$ /file.html