Here's What My Configure is set to
<Directory /Users/*/Sites>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch Includes ExecCGI
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi
</IfModule>
UseCanonicalName On
ServerSignature On
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/Users/Kids/Sites/cgi-bin/"
#
# "/Library/WebServer/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/Users/Kids/Sites/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</IfModule>
# End of aliases.
Thanks
Mr. Gecko
[cgi101.com...]
*<Directory "/Users/Kids/Sites/cgi-bin">
**AllowOverride None
**Options None
**Order allow,deny
**Allow from all
*</Directory>
With
*<Directory "/Users/Kids/Sites/cgi-bin">
**AllowOverride FileInfo AuthConfig Limit
**Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
**<Limit GET POST OPTIONS PROPFIND>
***Order allow,deny
***Allow from all
**</Limit>
**<LimitExcept GET POST OPTIONS PROPFIND>
***Order deny,allow
***Deny from all
**</LimitExcept>
*</Directory>