On Sun, 2005-05-08 at 21:49 +1200, motivated wrote: > <<< > Are you sure you copied info.php into /var/www/html/web/ ? > >>> > > No, inside my www directory I have a directory html and another web, there > is "no" web directory inside my html directory.
All files that you want to be visible to the web must be in the /var/www/html directory or subdirectory. So either put info.php into /var/www/html and use http://localhost/info.php or... create a subdirectory such as /var/www/html/web, copy info.php to it and access via: http://localhost/web/info.php http://localhost/ maps directly to /var/www/html If you have files in /var/www/web then it is not visible to the outside world. They must be in /var/www/html or a sub-directory of /var/www/html/
