Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
多くの htaccess リダイレクトをチェックしましたが、自分のニーズに合ったリダイレクトが見つからないようです。次のような古い URL があります。
www.domain.com/shoes/nike/filter/gender/men
文字列 'filter' の URL をチェックし、301 でリダイレクトするルールが必要です。
www.domain.com/shoes/nike
htaccessでそれは可能ですか?
これはあなたを助けるはずです:
RewriteEngine On RewriteRule (.*)/filter http://www.domain.com/$1 [R=301,L]
「フィルター」の後にすべてを削除するだけです