2016-04-18 18 views
1

これをhtaccessで301にリダイレクトするにはどうすればよいですか?htaccess 301ワードプレスでリダイレクト

http://example.com/products 

http://example.com/category/produkter_and_service 

このようなカテゴリ内の記事に影響を与えないが:

http://example.com/category/produkter_and_service/ventiler-og-bakkekraner/ 

私はこのように試してみました:

Redirect 301 /category/produkter_and_service http://www.example.com/products 

しかし、それはまた、記事に影響を及ぼしのようなページ:

/category/produkter_and_service/some_product 

答えて

1

リダイレクトディレクティブは完全なURI文字列をmatchs、あなたは代わりに、RedirectMatchを使用する必要があります。

RedirectMatch 301 ^/category/produkter_and_service$ http://www.example.com/products 
関連する問題