Skip to content

Instantly share code, notes, and snippets.

@foobartel
Created May 31, 2022 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foobartel/3cb8e1cd5d8bc103e017ea3e604ddd12 to your computer and use it in GitHub Desktop.
Save foobartel/3cb8e1cd5d8bc103e017ea3e604ddd12 to your computer and use it in GitHub Desktop.
Kirby Route Example - New homepage, other pages to 404
'routes' => [
[
'home' => 'other-page'
'pattern' => ['notes', 'notes/(:any)'],
'action' => function() {
if (! kirby()->user()) {
go('error');
}
$this->next();
}
]
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment