Report this

What is the reason for this report?

Removing /html/ directory from the end of my URL?

Posted on January 23, 2015

I installed Apache2 on Ubuntu and put everything in /var/www/html for my linked domain name. Is this where its supposed to be on Apache 2? Its the only place that its been working for me…

But how do I stop my domain (typing in domain.tld) from automatically going to domain.tld/html/? The website displays ok but can’t I just get it to show the contents of the html file (and their subdirectories) and show domain.tld?

I have tried some .htaccess fixes but to no avail. I also have some code in my .htaccess which redirects http:// to https:// and that is at least working now.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

It only seems to be an issue when www. is in front of the address; otherwise it doesn’t redirect. Maybe its because of the ServerName, ServerAlias combo I used?

Maybe if I put my ServerName as the IP address it would help?

If your VirtualHost’s DocumentRoot is set to /var/www, you will need to set it to /var/www/html so that http://yourdomain.tld/ maps to /var/www/html instead of /var/www.

Open your VirtualHost file in nano:

sudo nano /etc/apache2/sites-enabled/virtual-host

and set DocumentRoot to /var/www/html.

Then restart Apache:

sudo service apache2 restart

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.