Apache 使用 OR 运算符进行重定向

Apache 使用 OR 运算符进行重定向

如何使用 Apache OR 运算符将多条路径重定向到一个 URL?例如:

RewriteEngine on
RedirectMatch   301 /foo || /foo/bar || /das.html https://example.com/ext/ddy/$1

谢谢你的帮助。

答案1

RedirectMatch 301 ^(/foo|/foo/bar|/das.html)$ https://example.com/ext/ddy/$1

您可以在以下文档中了解详情Perl 兼容正则表达式 (PCRE),Apache 使用它。

相关内容