The old site has permalinks, and has been up for a long time. The new site has different permalinks and a different URL.
So http://store.olddomain.com/product-name-goes-here.html is the old site and the permalink structure. Some also have /brand-name/product-name-goes-here.html
I need only everything after the last slash to then route to http://www.newstore.com/SearchResults.asp?Search=product+name+goes+here&Submit=
If they access root, it should route to root of the new site, not the search page.
Anyone???
RewriteEngine On RewriteRule ([^/]+)/([^/]+) $1-$2 RewriteRule (.*)\-(.*) $1\+$2 [N] RewriteRule (.*).html http://www.inkedshop.com/SearchResults.asp?Search=$1&Submit= [L]– Col Ingus Mar 5 '12 at 21:22RewriteEngine On RewriteRule ([^/]+)/([^/]+) $1\-$2 [N] RewriteRule (.*)\-(.*) $1\+$2 [N] RewriteRule (.*).html http://www.inkedshop.com/SearchResults.asp?Search=$1&Submit= [L,R=302]is now what I have and still same result, hangs up if it has extra slashes. – Col Ingus Mar 5 '12 at 21:35