I\'ve just installed Mac OS X Yosemite fresh. I configured Apache and chmodded \"users/user/Sites\" to 755. When I hit localhost I receive a 403 Forbidden \"You don\'t hav
There are 2 possibility why your localhost
is forbidden, first it may be because your apache
setting is not correct and second, may be because you set vhost
and you forget about set localhost
too
sudo nano /etc/apache2/extra/httpd-vhosts.conf
`
ServerName localhost
DocumentRoot "/Users/username/Sites"
Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all
`
sudo apachectl restart
it should be works :)