I've added a virtual host in my vhosts file like this
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "/Users/myname/Sites/test/public"
ServerName test
<Directory "/Users/myname/Sites/test/public">
AllowOverride All
</Directory>
</VirtualHost>
My zend project is in the path "/Users/myname/Sites/test", called it test
Also, in the hosts file, I've this
127.0.0.1 test
These are the exact same steps I did on Windows, where it works correctly. But on Mac, it doesn't. I get
"Forbidden You don't have permission to access /test/public/ on this server" error.
What else am I missing?
My rewrite module is on