Changing the default index file in VestaCP hosting

July 3, 2015   /   by Marco  / Categories :  Technology
DirectoryIndex index.html index.php

I had to launch a new website and needed to display the index.html file instead of the default index.php file.

The index.html file is use as a coming soon page whereas the index.php is part of the Content Management System. In order to resolve this issue I had to use these steps:

NOTE: I use CentOS with nginx so these steps may be different for you

1. Locate your httpd.conf file. In my case it was located in /home/admin/conf/web

2. Open the httpd.conf file and go to the section that has VirtualHost and find the relevant website address. eg if your website is businesslegions.com then go to that section.

Example:

<VirtualHost 10.10.10.10:8080>
 
ServerName businesslegions.com
ServerAlias www.businesslegions.com
ServerAdmin info@businesslegions.com
DocumentRoot /home/admin/web/businesslegions.com/public_html
ScriptAlias /cgi-bin/ /home/admin/web/businesslegions.com/cgi-bin/
Alias /vstats/ /home/admin/web/businesslegions.com/stats/
Alias /error/ /home/admin/web/businesslegions.com/document_errors/
#SuexecUserGroup admin admin
CustomLog /var/log/httpd/domains/businesslegions.com.bytes bytes
CustomLog /var/log/httpd/domains/businesslegions.com.log combined
ErrorLog /var/log/httpd/domains/businesslegions.com.error.log
<Directory /home/admin/web/businesslegions.com/public_html>
AllowOverride All
Options +Includes -Indexes +ExecCGI
</Directory>
<Directory /home/admin/web/businesslegions.com/stats>
AllowOverride All
</Directory>

3. What you need to do now is add the following line:

DirectoryIndex index.html index.php

4. This makes the webserver display index.html first before index.php. So the final configuration should look like this:

DirectoryIndex index.html index.php

FEEDBACK
I hope this has helped some of you. If you need any further help then please let me know.
DO YOU LIKE WHAT YOU'VE READ?
Join our subscription list and receive our content right in your mailbox. If you like to receive some Great deals our Freebies then subscribe now!

Our Sponsors

  • Follow us:

OTHER ARTICLES YOU MAY LIKE


HOW TO USE KATALIST AI TO CREATE AWESOME STORYBOARDS

HOW TO USE KATALIST AI TO CREATE AWESOME STORYBOARDS

Creating a compelling and visually appealing storyboard is crucial for any creative project, whether it’s a film, television show, or advertisement. However, the traditional process of storyboarding can be time-consuming and labor-intensive. That’s where Katalist AI comes in. This innovative tool combines the power of artificial intelligence with the creativity of human input to revolutionize […]

read more
BUGS IN TIKTOK WEB APP

BUGS IN TIKTOK WEB APP

In this article, I will discuss the bugs I have encountered while using the Tik Tok web app. When using the TikTok web app, I encountered a frustrating issue where I was unable to follow back users. This problem has persisted, leaving me with zero following despite my efforts to engage with the platform. As […]

read more

Like our Page