I'm using MAMP at the moment which is doing great, I've been able to add virtual sites successfully and build from that.
In the root of one of the sites I'm working on I used the following htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
This removes the trailing .php
This used to work on a local site till I used BitBucket to use that folder as a repository.
I have checked the htaccess on another local site and it works but for this one local site it doesn't. I have tried changing the Virtual Directory too but no luck.
I have checked the Hosts file too.
Is there an issue with using a site in MAMP and Version Control?