2016-04-15 7 views
0

私は、次のような構造301リダイレクト - .htaccessの一致ルールの事前設定?

http://www.example.com/hair-removal/ 
http://www.example.com/hair-removal/sub 
http://www.example.com/hair-removal/sub/supersub 

を持っているすべてのリンクが

http://www.example.com/hair-removal-new/ 
http://www.example.com/hair-removal-new/sub 
http://www.example.com/hair-removal-new/sub/supersub 

にリダイレクトされているどのように私はhtaccessのファイルでこれを達成することができることを実現したいですか?

答えて

1

あなただけ/hair-removal/*のためにそれをしたいと変わらず、他のURLを残す場合は、この使用:

RewriteRule ^hair-removal/(.*)$ /hair-removal-new/$1 [R=301,L] 
0

それを試してみてください。

RewriteRule ^([^/]+)/ $1-new/ [R=301,NC,L] 
関連する問題