I'm trying to do a simple 301 redirect via htaccess with my Opencart 2.3 site.
old url: http://domain.com/PokPlushToy/PlushToys/ChikoPlush
the url I want to redirect to: https://domain.com/PokPlushToy
Here's my rewrite rule:
Code: Select all
RewriteRule ^PokPlushToy/PlushToys/ChikoPlush$ index.php?route=category/PokPlushToy [R=301,NC,L]
https://domain.com/PokPlushToy?_route_= ... ChikoPlush
thanks for any help here.
PS. my rule is before this rule:
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
but the url is still getting fouled.
Dave