Hi Derek,
I posted the code block in. Upon restart of httpd, it returns: Warning: DocumentRoot [/var/www/html/drupal] does not exist
Once I have done this, I can no longer see test.html, test.php. It returns a 403/forbidden. Also, /drupal/index.php gives a 403/Forbidden as well. I know that /var/www/html/drupal does exist because I can go there in the terminal window.
Thanks, Tim
Message: 3 Date: Tue, 02 Dec 2008 13:24:15 -0500 From: Derek Gransaull derek@dgtlife.com Subject: Re: [support] Getting to the Base URL To: support@drupal.org Message-ID: 49357D4F.1070300@dgtlife.com Content-Type: text/plain; charset=ISO-8859-1
Tim:
Try a virtual host block that looks like this:
<VirtualHost *:80> DocumentRoot "/var/www/html/drupal" ServerName drupal.localhost ServerAlias drupal <Directory /var/www/html/drupal> Options Indexes FollowSymLinks MultiViews AllowOverride FileInfo Limit Options Indexes Order allow,deny Allow from all </Directory>
</VirtualHost>
Regards,
Derek