I just switched to a Fedora Core 5 Server with Apache (httpd) and I can't view files out site the base directory (EX: www.example.com/blah/index.php but I can view www.example.com/index.php) How do I change settings so I can view files deeper into the base dir.?? Also, this is my own server... I am root, The server is in my house..
You can do this in two ways. by adding this line to .htaccess or by editing httpd.conf. Add this line to .htaccess: Options +Indexes Or add this line to your httpd.conf: <Directory /var/www> Options +Indexes </Directory> Of course you need to edit the path. Hope this helps.