Index folder

I presume you want to automatically point to a directory called /home under your public_html folder?
This can be done by a .htaccess file which you put in your public_html folder, like this for example:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?yourdomain.com$
RewriteRule ^(/)?$ home [L]

There are other ways too.
 
Back
Top