301 重定向的 htaccess 重写规则

htaccess Rewrite Rule for 301 Redirect

我对 regex/htaccess 感到厌恶,我需要帮助来制定这个 301 重写规则:

变换:

域。com/something/something/fixed_text-name

域。com/fixed_text/name

注意:'fixed_text'总是一样的。

感谢您的帮助。

您或许可以在 root .htaccess 中使用此规则:

RewriteEngine On

RewriteRule ^[^/]+/[^/]+/(fixed_text)-([^/]+)/?$ // [L,NC,R=301]