High Performance Starts Here — AMD Dedicated Servers

English

Home

Blog

How to Change Default ‘DocumentRoot’ Dir...

How to Change Default ‘DocumentRoot’ Directory in Apache Linux

How to Change Default ‘DocumentRoot’ Directory in Apache Linux

NetShop ISP

NetShop ISP · Blog Author

Feb 18, 2021 · Technical Tutorials

If you are reading this article now, most probably you are experiencing one of the most common issues that a lot of webmasters and Linux sysadmins are facing; how to change the default DocumentRoot in Apache.

What is Apache

Apache is one of the most popular web servers that is used in various Linux distributions, as well as Windows (i.e. LAMP environment). The apache web server is used to deliver content and serve multiple web queries simultaneously.

What is DocumentRoot

DocumentRoot is the root directory from which the Apache web server serves the content for your website’s visitors.

The default DocumentRoot for Apache is:

/var/www/html

This means that if you upload your WordPress files/folders and a new sub-directory named my-wordpress/ then your WordPress website will be accessible as follows:

http://www.JohnDoe.com/my-wordpress/

In this article we will explain how to change the default DocumentRoot in Ubuntu/Debian and CentOS/RHEL/Fedora.

Change DocumentRoot in Apache on Ubuntu / Debian

Open for editing the following files depending on whether you are on Ubuntu and Debian:

/etc/apache2/sites-enabled/000-default
/etc/apache/apache2.conf

Changing Apache’s DocumentRoot in Linux CentOS/RHEL/Fedora

In CentOS/RHEL/Fedora Linux distributions the Apache’s configuration file is the following:

/etc/httpd/conf/httpd.conf

Open the config file with your favourite text editor and search for DocumentRoot

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"

Once you locate the DocumentRoot, change the path to the new target directory and make sure that it is read/writable by Apache web server. Once you have modified the DocumentRoot path, save the file and restart apache web server as follows:

# systemctl restart apache     [for SystemD]
# service httpd restart        [for SysVinit]   

That’s it! If no errors occur during Apache’s restart, you should be able to access your Website from any browser.

apache
how to
linux
tutorials
Press Releases
97

Free VPS Trial

No Credit Card Required.

Start Your VPS Hosting Free Trial

Recent Posts

Hermes AI Agent VPS - Deploy in 1 Click

Introducing Hermes Agent VPS: Your Own AI Agent, Live in One Click

22 July 2026

How To Protect Your Website from DDoS Attacks in 2026

How To Protect Your Website from DDoS Attacks in 2026

14 July 2026

Why Your Stream Keeps Buffering (And How to Fix It)

Why Your Stream Keeps Buffering (And How to Fix It)

08 July 2026

How to Secure Your WordPress Website in 2026

How to Secure Your WordPress Website in 2026

30 June 2026

How To Fix Outdated Theme on cPanel / WHM

Why Your cPanel or WHM Login Page Is Showing an Outdated Theme (And How to Fix It)

22 June 2026