Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Alias Wierdness I still don't get it |
|
Author |
|
johnnyhandsome
Joined: 04 Dec 2006 Posts: 1
|
Posted: Mon 04 Dec '06 6:25 Post subject: Alias Wierdness I still don't get it |
|
|
I have the following in my config.. I want to alias to another drive. Apache is installed on my C drive... I have not been using Apache for long.
Anyway any help would be appreciated... Thanks.
Alias /011 "F:/011"
<Directory investing>
Options +Indexes FollowSymLinks
AllowOverride FileInfo
Order allow,deny
Allow from all
</Directory>
<Directory "F:/011">
Options +Indexes FollowSymLinks
AllowOverride FileInfo
Order allow,deny
Allow from all
IndexOptions SuppressSize
</Directory>
I have tried with/without quotes around the path. I keep getting the 403 error..
Forbidden
You don't have permission to access /011/ on this server.
ooops forgot to mention the relative link 'investing' on the C: drive works fine but the Alias to F:/011 does not... |
|
Back to top |
|
pnllan
Joined: 05 Dec 2005 Posts: 221
|
Posted: Mon 04 Dec '06 9:38 Post subject: |
|
|
Since you are using the AllowOverride directive, I will presume that you are using a .htaccess file for security, rewriting, or whatever else. So, since you are getting a 403:
- Do you have a .htaccess file in that folder?
- if so...What directives are contained in it? |
|
Back to top |
|
|
|
|
|
|