htaccess中的通配符redirect

我需要做一个重写规则或redirect通配符中包含的行。 这是我迄今为止的一个单独链接的例子。

redirect301 / actors / hey-steve-dave-454924 / http://www.mydomain.com/

我想有类似于Redirect 301 / actors / hey-steve-dave- *的地方,其中*用/ actors / hey-steve-dave-(任意6个数字)redirect到主页。

有任何想法吗?

使用RedirectMatch

 RedirectMatch 301 ^/actors/hey-steve-dave-.*$ http://www.mydomain.com/ 

这只是hey-steve-dave-之后的一个通配符,你可以得到更具体的 – 这将是6个数字,没有别的,有或没有尾随斜线:

 RedirectMatch 301 ^/actors/hey-steve-dave-\d{6}/?$ http://www.mydomain.com/