Complete the code to set the default index file to index.html.
index [1];index directive specifies the default file served when a directory is requested. index.html is the common default.Complete the code to set multiple index files: index.php and index.html.
index [1] [2];
Fix the error in the code to correctly set the index file to home.html.
index [1];index directive must end with a semicolon. Without it, the configuration is invalid.Fill both blanks to set the index files to default.html and index.htm.
index [1] [2];
default.html is first, then index.htm.Fill all three blanks to set the index files to main.php, index.html, and default.htm.
index [1] [2] [3];
