次の条件に一致する URL をリダイレクトしようとしています。
old-domain.com/marketplace/businesses/anything-here/ads/
old-domain.com/marketplace/businesses/anything-here/ads/anyhting-after-this-too
old-domain.com/marketplace/businesses/anything-here/ads/anyhting-after-this-too/anyhting-after-this-too/
etc...
に
new-domain.com/deal/
これは私の.htaccess
ファイルがどのように見える かです
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^marketplace/businesses/([a-z0-9\-_]+)/ads/(.*) http://new-domain.com/deal/ [R=301,L]
</IfModule>
と他のコンボを交換([a-z0-9\-_]+)
するなど、いくつかのバリエーションを試しましたが、うまくいかないようです。([A-Za-z0-9_-\s\.]+)
[a-zA-Z-_0-9]+)
また、私が URL のどこで言ったかに注目してanything-here
ください。これは、そこにあるほとんどすべてのものに一致できるようにしたいという意味です。
どんな助けでも大歓迎です。
ありがとう