| Sign In/My Account | View Cart |
| Article: |
Apache Web Serving with Jaguar, Part 2 | |
| Subject: | Gleefully served | |
| Date: | 2003-11-24 12:09:26 | |
| From: | anonymous2 | |
|
Response to: Gleefully served
|
||
|
I finally found that there wasn't a Directory for "/Library/Webeserver/Documents" - only ones for "/Library/Webeserver/Documents/manual/" and "/Library/Webeserver/Documents/CGI-Executables"
|
||
Showing messages 1 through 2 of 2.
Alias /manual/ "/Library/WebServer/Documents/manual/"
<Directory "/Library/WebServer/Documents/manual">
Options Indexes FollowSymlinks MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
****************************************
The following is the CORRECT code that worked for me. (Don't forget to turn web sharing off and on again to refresh the httpd.conf file!!) good luck:
Alias /Documents/ "/Library/WebServer/Documents/"
<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymlinks MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>