[CentOS] The requested URL was not found on this server

Thu Apr 19 13:18:32 UTC 2012
John Doe <jdmls at yahoo.com>

From: Prabhpal S. Mavi <prabhpal at digital-infotech.net>
> sorry to inform that following solutions did not solve the error "The
> requested URL was not found on this server"
> $url_path = "/cacti/";
> or
> Alias /cacti /var/www/html/cacti/

Why the /html/ in the middle?

This works without a vhost:

  # grep cacti /etc/httpd/conf.d/cacti.conf 
  Alias /cacti/ /var/www/cacti/
  <Directory /var/www/cacti/>

  # grep path /var/www/cacti/include/config.php
  $url_path = "/cacti/";

JD