How to dump MAMP Pro and make the free version behave similarly.
custom.conf
or whatever you want to name it/Applications/MAMP/conf/apache/
httpd.conf
with your favorite editorInclude /Users/[your-user-folder]/Sites/custom.conf
127.0.0.1 yourwebsite.local
(make sure each address matches the one you added in your conf file from step 1)Here's a screenshot of my hosts file in Gasmask as a reference.
# Your Site Here
<VirtualHost *>
DocumentRoot "/Users/[your-user-folder]/Sites"
ServerName website.local # or website.dev, whatever
</VirtualHost>