Knowledge Base
How to Change the Default Index Page in .htaccess
If you visit a web address that contains a domain name only, the default index page will display as the first page. If there is more than one index file, the server will follow its default order, which is index.php, index.html, index.htm, and then default.htm.
You may change your default index page by altering the .htaccess file, especially if you have a customised name for your index file. This will also avoid internal links from being broken on your site.
Change your default index page through the .htaccess by following the steps below:
- Log in to your cPanel.
- On the Home page, click the Files icon or the [ v ] arrow symbol. Click on the File Manager icon.
- Locate the .htaccess file, right-click on it, and select Edit.
- A text editor pop-up will display. Click Edit again.
- The .htaccess editor will appear. Paste the following code at the top of the page, and replace mypage.html with the file name of your index page.
#Alternate default index page DirectoryIndex mypage.html
Note: You can add more than one file if you want. The server will just read it from left to right. For example, we can add index.htm, index.html, and index.php from the code above. The server will now check for mypage.html first. If it does not find a file with that name, it continues to index.htm and so on. - Click Save Changes at the upper right corner of the page.
Congratulations!Your default index page is now changed. Please let us know if you need any further assistance, or if you have any questions. We’d love to help!
* Your feedback is too short