$kirby->root('accounts')
Returns the root of the accounts folder.
Example
<?= $kirby->root('accounts') ?>
Custom setup
If you want to overwrite the root you can do this in your index.php
by passing a custom roots setup to the Kirby constructor.
<?php
include 'kirby/bootstrap.php';
$kirby = new Kirby([
'roots' => [
'accounts' => '/absolute/path/to/custom/root',
],
]);
echo $kirby->render();