Your Webhosting Questions
Answered by the Webhosting Experts
Tags
...
...

How will you change the default file (homepage) using .htaccess?

When a URL specifying only a directory is requested …
eg.: https://www.domain.com/directory/

Initially, Apache looks for file names by default (in the order they appear):

index.html
index.htm
home.html
welcome.html

The .htaccess directive “DirectoryIndex” can be used to override this behavior.

In your .htaccess file, type the following line:

DirectoryIndex index.php index.html

In the above example Apache is forced to look for index.php first and look for index.html only if there is no index.php file present.

“DirectoryIndex” can be used to make any file you would like to appear as default. For

For instance, you could have:

DirectoryIndex firstpage.html first.html first.php

In the above example ,apache would first look for firstpage.html, first.html, and first.php, returning a directory listing if none of those files were present in the directory.

Need More Personalized Help?

If you have any further issues, questions, or would like some assistance checking on this or anything else, please reach out to us from your my.hivelocity.net account and provide your server credentials within the encrypted field for the best possible security and support.

If you are unable to reach your my.hivelocity.net account or if you are on the go, please reach out from your valid my.hivelocity.net account email to us here at: [email protected]. We are also available to you through our phone and live chat system 24/7/365.

Tags +
...