2017-09-16 19 views
1

Opencart Version 2.1.0.1を使用しています。 old urlそれは働いていない.htaccess経由 new urlにリダイレクトしようとしています。 opencart 301古いURLから新しいURLへのリダイレクトエラー

この

は、私は解決策を持って

RewriteEngine On 
RewriteBase/
RewriteCond %{HTTP_HOST} !https://www.example.com/index.php?route=product/category&path=62_100/$ [NC] 
RewriteRule ^(.*)$ https://www.example.com/personalized/fridge-magnets/$1 [L,R=301] 

答えて

1

私のコードです

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?route=product/category&path=62_100[?\s] [NC] 
RewriteRule^/personalized/fridge-magnets? [R=301,L] 
関連する問題