The title doesn't give justice to the question.
I have a site and I want it to be redirected to a subfolder.
I have this right now:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.net$ [OR]
RewriteCond %{HTTP_HOST} ^www.mysite.net$
RewriteRule ^(.*)$ "http\:\/\/www\.mysite\.net\/subfolder$1" [R=301,L]
The problem is that it results in a infinite redirect loop. It gets to / and redirects it to a subfolder and when it arrives there, it again redirects it.
How do I stop the redirection as soon as it gets to my designated subfolder.