I have a Phalcn site for which I am setting up three entry points.
/.htaccess
/index.php
/public
/dashboard
/api
The idea being that apache .htaccess handles sending all requests to /public via the following:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^$ public/     [L]
    RewriteRule (.*) public/$1 [L]
</IfModule>
I would like to account for the dashboard and api directories similarly...without clobbering the /public settings...
Is there any boilerplate .htaccess for this?
Many thanks!!