Following a bug report in MAMP, initiated by another SO topic, I would like to ask how one would counter this bug where MAMP 3.0.6 (latest version) does not behave correctly with the following .htaccess rule :
RewriteRule ^(.*)/$ /$1 [L,R=301]
should redirect anything like
http://localhost/foo/test/
to
http://localhost/foo/test
but redirects to
http://localhost/test/
instead.
Thanks, and kind regards !