Maybe we need to set up a forum just for all the htaccess questions I ask 
Old store was using a third-party module to create the SEO short-links. New store is able to use the built in SEO Settings to produce the following short style
This is the style the store has been using for years and years. But somewhere the search engines are finding this link style:
The SEO Settings has inserted this rewrite for the product URL
and I "think" this one is for the breadcrumbs product URL
So what would the rewrite need to be to get the long-style link without the store code directed to the short-style link with the store code?
Many thanks!
Leslie

Old store was using a third-party module to create the SEO short-links. New store is able to use the built in SEO Settings to produce the following short style
Code:
http://www.domain.com/page/store_code/PROD/product_code
Code:
http://www.domain.com/Merchant2/merchant.mvc?Screen=PROD&Product_Code=product_code
Code:
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^page/([^/]+)/PROD/([^/]+)$ /Merchant2/merchant.mvc?Store_code=$1&Screen=PROD&Product_code=$2 [QSA,L]
Code:
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^page/([^/]+)/PROD/([^/]+)/([^/]+)$ /Merchant2/merchant.mvc?Store_code=$1&Screen=PROD&Product_code=$3 [QSA,L]
Many thanks!
Leslie
Comment