将每个尾随文件夹重定向到主文件夹

Redirect every trailing folder to main folder

我有几个我想要重定向的不需要的网址:

/faq/
/faq/question/1-title
/faq/question/2-title

我希望所有 /faq/question/* url 重定向到 /faq,这可能吗?

我有这个但是没用:

RedirectMatch 301 ^/faq/question/([^/]+)/?$ /faq

根据您显示的 samples/attempts,请尝试遵循 htaccess 规则文件。确保将此新规则放在 htaccess 文件的顶部(在 https 规则之后(更改 http --> https 规则),以防 htaccess 文件中存在任何规则)。

另外,请确保在测试您的网址之前清除浏览器缓存。

RewriteEngine ON
##Put your new rule here..
RewriteRule ^faq/question/ /faq? [R=301,L,NC]
###Make sure to keep rest of your urls here onwards...