I have an alias set up in Apache like so:
Code:
Alias /folder/ "/usr/local/folder/"
<Directory "/usr/local/folder">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Whenever I try to access
http ://server/folder or
https ://server/folder
I get a 404 (as expected).
Whenver I try to access
http ://server/folder/ or
https ://server/folder/
In FireFox on FC4 going to those URLs does nothing, but from IE on WinXP I get the typical "Cannot find server or DNS Error."
It should be noted that the code above is in an external conf file loaded by the Include directive and the documentroot is /war/www/html. I am running Apache 2 and PHP 5. It also may be relevant that I am trying to load index.php from the folder above, but index.php works fine on subfolders in the root... I am certain the answer is simple, but I have had no luck in finding it or manipulating permissions (chown to apache.apache or chmod to 777). Any help would be much appreciated.