How do I automatically redirect visitors to my domain to a subfolder?
You can redirect visitors to your domain to a subfolder of your choosing using the following example:
RewriteCond %{REQUEST_URI} !^subfolder
RewriteRule ^(.*)$ subfolder/$1 [L]
Where "subfolder" in the above code is the name of the subfolder to redirect to.