Changing root path for my site

Hello,

i try to change the root path but it doesn´t work :frowning: I have a folder “start” on my server and there is my kirby site in it.
But the LINKS does´t work. i try this in a site.php

    <?php

$kirby = kirby();
$kirby->roots->site = '/start/';

echo $kirby->launch();

Try to set the RewriteBase in your .htaccess file like this:

RewriteBase /start

After that you should be able to access your kirby site with

http://yourdomain.com/start
1 Like