Or use Web.Config, but the recommended way is to use from virtual directories
<configuration>
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="home.html" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
Apache is usually installed in index.php or index.html
You can use .htaccess on Linux servers and set the default page on the Plesk website.
DirectoryIndex index.php index.html site-down.php
source
share