Did you install it into a subdirectory under
public_html/, such as
public_html/eStore/? If so,
good -- leave it there. If you want a visitor to see your own Home Page first, just put a link into
public_html/index.html (your Home Page) to go to
/eStore/index.php. If you want your visitors to go directly into your store, either do a redirection in cPanel/.htaccess to go to /eStore/index.php, or use the following
public_html/index.html:
<html>
<head>
<title>Welcome to My Store</title>
<meta http-equiv="refresh" content="0; url=/eStore/index.php" />
</head>
<body>
<p>You should be immediately redirected to My Store. If not, please
<a href="/eStore/index.php">click here</a> to get to the store.</p>
</body>
</html>