Suppose you have a folder /home within your domain ‘example.com’ and would like to have your domain visiting users get redirected to example.com/home when they hit example.com, you can use the following short .htaccess snipnet :
<IfModule mod_rewrite.c>
RewriteRule ^$ /home [L,R=301]
#replace /home with the folder name which you intend to
</IfModule>
It’s quite simple !