ScottInTexas
02-28-2003, 07:08 PM
I am using Apache as a server, which I got from phpdev, and I created a directory under the WWW where I want to develop some pages. I inserted into the Apache httpd.conf file the alias LJ4H
ALias /LJ4H/ "C:/phpdev/www/LJ4H/"
<Directory "C:/phpdev/www/LJ4H/">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex index.php index.htm
</Directory>
The AccesFileName is set to .htaccess and that file has
DirectoryIndex index.php and the file Index.php has include("phpinfo.php");
But nothing happens when I try http://localhost/lj4h. No errors, just a blank page which tells me that the phpinfo file hasn't run.
What am I missing?
Scott
ALias /LJ4H/ "C:/phpdev/www/LJ4H/"
<Directory "C:/phpdev/www/LJ4H/">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex index.php index.htm
</Directory>
The AccesFileName is set to .htaccess and that file has
DirectoryIndex index.php and the file Index.php has include("phpinfo.php");
But nothing happens when I try http://localhost/lj4h. No errors, just a blank page which tells me that the phpinfo file hasn't run.
What am I missing?
Scott