所以我按照本教程在本地设置了我的 wordpress 项目:http: //jason.pureconcepts.net/2012/10/install-apache-php-mysql-mac-os-x/
然而,它给了我一个
Forbidden You don't have permission to access / on this server.
错误。我什至尝试将我的项目的权限更改为777
,但没有任何效果。我现在应该运行 Apache、MySQL 和 PHP。这是我的/etc/apache2/extra/httpd-vhosts.conf
文件:
<VirtualHost *:80>
DocumentRoot "/Users/emai/Documents/wordpress_projects/ahrf"
ServerName ahrf.local
ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log"
CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common
<Directory "/Users/emai/Documents/wordpress_projects/ahrf">
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
我的 /etc/hosts127.0.0.1 ahrf.local
添加了这一行。所以看起来我的 apache config + hosts 文件配置正确。我什至尝试将默认的_www
apache 用户添加到staff
我的 mac 上的组中。
有谁知道如何解决这一问题?