我已经在互联网上不停地搜索了三天以找到解决我的问题的方法,但没有任何效果。
我的 Apache 已加载,我的 httpd.conf 文件是默认的,而不是现在未注释的 PHP5 LoadModule,并且至少允许读取所有文件的权限。
我已经完全重新安装了 Mountain Lion,只使用 Time Machine 恢复了我的用户帐户。
以下是我的 httpd.conf 文件的一些重要部分(因为它们是默认的):
ServerRoot "/usr"
#Listen 12.34.56.78:80
Listen 80
User _www
Group _www
#ServerName www.example.com:80
DocumentRoot "/Library/WebServer/Documents"
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
我的UserName.conf文件(James.conf):
<Directory "/Users/James/Sites/">
Options Indexes MultiViews
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
</Directory>