Question about One-Pager setup

Hello together,

I have make the one-pager setup on a local installation but I have one problem:

When I test e.g. localhost/xxx/ueber-mich then I can see the separate site. Have I make a mistake in the setup or is it normal?

Best wishes,

Markus

That is normal behaviour. Each page generates a URL, under which it can be found. To prevent that, you can use the default.php template with a redirect to either the error or start page

<?php go('error'); ?>

or

<?php go('/'); ?>

Thanks again for the quick help.