I’m using Kirby 3 with the “Thinking” theme and I’m trying to change the home page for the site from home to blog. I’m not sure where to make the change as I keep getting syntax errors. Can someone help? The config file is as follows:
<?php
return [
'debug' => true,
'routes' => [
[
'pattern' => 'home/(:any)',
'action' => function () {
return go('home');
}
]
],
'bnomei.robots-txt.sitemap' => 'sitemap.xml',
'omz13.xmlsitemap' => [
'excludeChildrenWhenTemplateIs' => ['default'],
'disableImages' => true,
],
'panel' =>[
'install' => true
]
];