Change default page?

Is it possible to change the default page which is loaded via “/”? I have a page named “Home” but I would not like it to come up by default, instead I would like to show /intro.

This gets more complicated because this is a multi-lingual site. I thought about trying to add a route 'pattern' => '/', but it doesn’t seem to match because url actually starts with language code.

Thanks.

You can set the home page to any other page via a config setting:

c::set('home', 'intro');

Thanks for the help.