Quote Originally Posted by mc12345678 View Post
Regarding the second question of new/estore redirecting tonew, it should be noticeable that the second rewrite group doesn't exclude new/estore and therefore ttempts to rewrite whatever result from the first rewrite in the second rewrite. (Perhaps another way to prevent it, but I would check that the uri is not new/estore), this does mean that in the "second" store, the path of estore can not/should not be used for any rewrites in the admin.)
Added the line below to the second section of the .htaccess to prevent it from redirecting new/estore to 'new'.
Code:
RewriteCond %{REQUEST_URI} !^/new/estore/ [NC]
This had no effect.