[Fixed]-Django + Apache – Can't find directory of my website

1👍

You should access the site using the URL http://www.vbgetech.com. You can’t necessarily use the IP address. If you use the IP it will not match by host name lookup against VirtualHost and so the request will instead be handled by the first VirtualHost in the Apache configuration file, or in other words the default VirtualHost. That default VirtualHost is going to give you the default page if you never changed it.

In other words, if you added a new VirtualHost and didn’t modify the default one, then you are going to have to use a proper host name in the URL for it to match your VirtualHost.

Leave a comment