This is a discussion on Adding Apache serving directories within the Windows Web Servers forums, part of the Web Server and Related Forums category; Hi: I'm running Apache 2 and php 5, on win 98. Both are working. I'm trying to add ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi:
I'm running Apache 2 and php 5, on win 98. Both are working. I'm trying to add a "php" directory beneath the standard htdocs directory. I've described what I did below, but the net result is that I can't serve from files in the new directory: The following directory definition was the default in my httpd.conf file: <Directory "C:/Program Files/Apache Group/Apache2/htdocs"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> I added the following section, to the conf file, and created the php directory: # 11/16/04 drs Added the php subdir for access <Directory "C:/Program Files/Apache Group/Apache2/htdocs/php"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> I get the "page not found" error when I put "minimal.php" in this directory and used http://localhost/php/minimal.php to try and access it. Can anybody out there give me a hint? Thanks, Dan |