I am running Apache2 on Ubuntu 10.4
In my apache2.conf I have an alias setup like this:
Alias /cake/ /var/www-cake/repo
<Directory /var/www-cake/repo>
Order allow,deny
Allow from all
AllowOverride All
Options +Indexes
</Directory>
inside the /var/www-cake/repo directory I have some .txt and .php files one is index.php and there is also a hidden .svn folder because it is a working copy.
when I go to http://linux-server/cake/ I get a directory listing that shoes the .php and .txt files. When I click on a file it takes me to http://linux-server/cake/index.php in which I get a 404 page not found error.
What do I need to do to make the files accessible?