Question : please check my .htaccess

HI expert,

On the server of my provider I've got three folders in my root folder.

production
test
beta

both test and beta are sub domains and can be addressed by typing:

http://beta.mysite.nl
http://test.mysite.nl

But when I try to reach my production site it can only be reached by

http://www.mysite.nl/production/

Now I've got a .htaccess file (code below) that tries to fix this.
The goal is to reach my production site by using :

http://www.mysite.nl

And because my domain name is in the middle of a domain move I feel a little uncertain about the working of this file. So maybe some of you give it a quick scan if all is OK.

Thanks,
1:
2:
3:
4:
5:
6:
7:
8:
9:
Options +FollowSymLinks
RewriteEngine On
RewriteBase / 
RewriteCond %{REQUEST_URI} !(\.|/$) 
RewriteRule (.*) http://www.mysite.nl/$1/ [R=301,L] 
RewriteCond %{HTTP_HOST} ^mysite.nl$ 
RewriteRule ^/?(.*)$ http://www.mysite.nl/$1 [R=301,L] 
RewriteCond %{REQUEST_URI} !^/production
RewriteRule ^(.*)$ production/$1 [L]

Answer : please check my .htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.site.nl
RewriteCond %{QUERY_STRING} ^s=42&l=126$ [NC]
RewriteRule ^(.*)$ http://www.site.nl/production/? [R=301,L]
Random Solutions  
 
programming4us programming4us