New Zenner
- Join Date:
- Nov 2008
- Posts:
- 11
- Plugin Contributions:
- 0
Simple SEO URL (OLD version) [support thread]
I'm almost done with the migration from the dreaded miva to zencart shopping cart. I need to 301 redirect from the miva seo url http://www.mydomain.com/page/XY/CTGY/MyCategory to SSU http://www.mydomain.com/MyNewCategory. I tried ```
.
.
.
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA]
EOF SSU
RewriteRule ^/page/XY/CTGY/MyCategory/$ /MyNewCategory [R=301,L]
and many other versions of the RewriteRule with my limited knowledge of regex, without success.
Since the original and new url do not pattern match well, I may need to create an rule for every category and product.
What am I missing in my rule or regex? Thanks.