How the index page at silverbullet.md is in fact configured? I’m using the Index Page howto hack with
```space-lua
local function redirectToCustomIndex()
if editor.getCurrentPage() == 'index' then
editor.navigate({
kind = 'page',
page = 'Home'
})
end
end
event.listen {
name = 'editor:init',
run = redirectToCustomIndex
}
event.listen {
name = 'editor:pageLoaded',
run = redirectToCustomIndex
}
```
but I am redirected to /Home so that I see the path in the URL. I do not see anything special in the website/ source directory that could cause the same (and expected for index) behaviour instead of the behaviour I see. When you go to the silverbullet.md website, you don’t end up at /SilverBullet path (not shown in the URL bar in browser). What’s the trick? Is it some proxy rewrite on the web provider’s site or something alike? Also the code from the above does what is expected - it just opens some page instead of the index page, that’s all. Just curious (and some may be too).
Thanks.