hi all,
I have a version 1 of my site and there will be version 2 and more.
So I used the htacces file to automaticaly go from "mydomain.com" to "mydomain.com/cgx/v1". This works great, now if I want to go to v2 I only have to change it in the htacces file.
The problem is that I also have testing sites and a website for the people I work with (just 2

.
These sites go like this: mydomain.com/files/intranet or something else.
But when I type that in my browser it goes to mydomain.com/cgx/v1/files/intranet.
How can I solve this so that it ignores the mydomain.com/cgx/v1 redirect?
this is what I have so far:
Code:
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} mydomain.com
RewriteCond %{REQUEST_URI} !cgx/v1/
RewriteRule ^(.*)$ cgx/v1/$1 [L]
many thanks for any help
Aaron