You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by bobby <bo...@yahoo.com> on 2001/04/23 07:00:46 UTC

Trouble in Mapping URL! HELP!!

I am using Apache 1.3.13,and want to map URL "http://localhost/new" to my directory: /home/mydir/new
I had appended below into /etc/httpd/httpd.conf

Alias /new "/home/mydir/new"
<Directory "/home/mydir/new">
   Options Indexes FollowSymLinks
   Allow from all
</Directory>

But when I attempted to connect to "http://localhost/new",I was told that I have no permission for this directory!
How can it be?