Hi Mike! Long time no see.
It’s MAMP 2.2 and according to this page, http://www.mamp.info/en/documentation/releases.html, it’s running Apache HTTP Server 2.2.25.
I’ve added those options into httpd.conf but it doesn’t seem to make a difference. Possibly I’ve just got the syntax wrong. It looks like this — is it correct?
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
<Directory /home/*/public_html>
AllowOverride All
DirectoryIndex disabled
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>
Thanks,
Brent