Test site pages go to main site

Your htaccess file seems to be a little off.

I would suggest the first part of the file should look like the following…

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /testsite/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /testsite/index.php [L]
</IfModule>

And that you store it in the ‘testsite’ folder not the root.