|
Where it says "Go to the top of your Apache configuration file and search for "/Library/Webserver/Documents/" is errata...
In BBEdit you'll be searching the config file for "/Library/WebServer/Documents"
which will give the desired result he describes in this article:
######################################
The second result looks like the following (we've removed the commented lines from this example):
<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
###################################
|